We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80523f3 commit e7af966Copy full SHA for e7af966
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
7
+concurrency:
8
+ group: ${{ github.head_ref || github.run_id }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - run: docker pull jmadler/python-future-builder:latest
17
+ - run: ./build.sh
18
+ - run: ./lint.sh
.travis.yml
0 commit comments