diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:50:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:50:38 +0300 |
commit | 94eeecf4f6772de888c2b877ef901c6a5ee8ba71 (patch) | |
tree | c3571c79773f90c38610da9c2752f8a422cf39db /.github/workflows/ci.yml | |
parent | workflows/test: test w/ latest Python (diff) | |
download | linux-status-94eeecf4f6772de888c2b877ef901c6a5ee8ba71.tar.gz linux-status-94eeecf4f6772de888c2b877ef901c6a5ee8ba71.zip |
workflows/test -> workflows/ci
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..a52c7ce --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: Test + +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 |