Skip to content

Commit 1ce97f0

Browse files
authored
Merge pull request #263 from vstinner/gha
Replace Travis CI with GitHub Action
2 parents 9198046 + e1ceb84 commit 1ce97f0

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

.github/workflows/build.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup Python
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: 3.9
18+
- name: Check configuration
19+
run: make check PIP=pip BUILDBOT=buildbot

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
*.pyc
2-
.*
32
!.gitignore
43
backup/
54
bin/

.travis.yml

-8
This file was deleted.

0 commit comments

Comments
 (0)