diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 18:50:01 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 18:50:01 +0300 |
commit | 8c36d69c256ec277b514fa1e25b2a6286e31e334 (patch) | |
tree | 12fe7ce3fd627d336214a01f42d4aa9e9728d116 /.github/workflows/ci.yml | |
parent | debian/README: update (diff) | |
parent | index.html: safer DOM generation using jQuery (diff) | |
download | linux-status-8c36d69c256ec277b514fa1e25b2a6286e31e334.tar.gz linux-status-8c36d69c256ec277b514fa1e25b2a6286e31e334.zip |
Merge tag 'v1.0.1' into debian
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f0e1d49 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + test: + strategy: + matrix: + python-version: [3.6, 3.7, 3.8, 3.9, 3.x] + runs-on: ubuntu-latest + name: 'Python ${{ matrix.python-version }}' + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '${{ matrix.python-version }}' + - name: Run tests + run: ./test/test.sh |