We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9198046 + e1ceb84 commit 1ce97f0Copy full SHA for 1ce97f0
.github/workflows/build.yml
@@ -0,0 +1,19 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
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,5 +1,4 @@
*.pyc
-.*
!.gitignore
backup/
bin/
.travis.yml
0 commit comments