Skip to content

Test Salt 3006

Test Salt 3006 #165

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
salt-version: ["3004.*", "3005.*", "3006.*"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run checks
run: |
pip install poetry
poetry install
poetry run pip install --upgrade 'salt==${{ matrix.salt-version }}'
poetry run salt --versions
make all