208: Replace pkg_resourse with importlib #232
Workflow file for this run
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: validate changes | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.11', '3.12'] | |
TOX_ENV: [coverage, quality, django42] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: make ci.test TOX_ENV=${{ matrix.TOX_ENV }} |