Browse Source

Merge branch 'master' into new-embed-libs

test_fixup
Vadiml1024 2 years ago
committed by GitHub
parent
commit
a3f2103810
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      .github/workflows/ci.yml

+ 12
- 2
.github/workflows/ci.yml View File

@@ -4,9 +4,19 @@ jobs:
test:
strategy:
matrix:
version: [2.7, 3.8]
os: ['ubuntu-20.04', 'ubuntu-22.04']
version: ['2.7', '3.8', '3.9', '3.10']
exclude:
- os: 'ubuntu-20.04'
version: '3.10'
- os: 'ubuntu-22.04'
version: '2.7'
- os: 'ubuntu-22.04'
version: '3.8'
- os: 'ubuntu-22.04'
version: '3.9'
name: Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install host dependencies
run: sudo apt update && sudo apt install -y libarchive-dev python${{ matrix.version }}-dev


Loading…
Cancel
Save