artifacts under the same name #829
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: Testing | |
on: [push] | |
# adapted from: https://github.com/tiangolo/poetry-version-plugin | |
jobs: | |
test: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ "ubuntu-latest", "macos-latest" , "windows-latest"] | |
python-version: [ "3.9" ] | |
defaults: | |
run: | |
shell: bash | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up python ${{ matrix.python-version }} | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: requirements/requirements-${{ matrix.os }}-${{ matrix.python-version }}.txt | |
- name: Install pinned requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/requirements-${{ matrix.os }}-${{ matrix.python-version }}.txt --prefer-binary | |
- name: Install test requirements | |
run: pip install .[test] | |
- name: Run tests | |
run: | | |
pytest tests/ |