fix setup to allow to pass tests in internal jenkins #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build | |
on: [push, pull_request] | |
jobs: | |
make: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
make_target: | |
- test | |
- itest_focal | |
- itest_jammy | |
- itest_noble | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- run: pip install tox | |
- run: sudo apt-get install -y --no-install-recommends zsh | |
- run: make ${{ matrix.make_target }} |