diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:16:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:16:54 +0200 |
commit | e93953b93a76566275f246fbf107df9c2d545fcd (patch) | |
tree | fb49c3792dfb4a8525a214c20ce15ecccbf5523d | |
parent | debian: 2.3.1-1 (diff) | |
parent | workflows/ci: upgrade actions (diff) | |
download | linux-status-e93953b93a76566275f246fbf107df9c2d545fcd.tar.gz linux-status-e93953b93a76566275f246fbf107df9c2d545fcd.zip |
Merge branch 'master' into debian
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fd7af1..b72f37a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,14 +9,14 @@ jobs: test: strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.x] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] runs-on: ubuntu-latest name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '${{ matrix.python-version }}' - name: Run tests as root |