Skip to content

chore(deps): update dependency ubuntu to v22 #430

chore(deps): update dependency ubuntu to v22

chore(deps): update dependency ubuntu to v22 #430

Workflow file for this run

# vim: ft=yaml
name: test
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { salt: "3006", python: "3.10" }
- { salt: "3005", python: "3.9" }
- { salt: "3004", python: "3.9" }
- { salt: "3004", python: "3.8" }
- { salt: "3003", python: "3.9" }
- { salt: "3003", python: "3.8" }
- { salt: "3002", python: "3.9" }
- { salt: "3002", python: "3.8" }
steps:
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python }}
- run: pdm install --dev --no-self --no-default
- run: pdm run tox -e salt${{ matrix.salt }} -- -vv
black:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
with:
python-version: "3.11"
- run: pdm install --dev --no-self --no-default
- run: pdm run black --check .