2022-10-24 21:51:15 +00:00
|
|
|
name: test
|
|
|
|
|
2022-12-04 00:42:59 +00:00
|
|
|
on:
|
|
|
|
push:
|
2022-12-07 06:28:50 +00:00
|
|
|
branches: [master]
|
2022-12-04 00:42:59 +00:00
|
|
|
pull_request:
|
2023-05-19 20:46:33 +00:00
|
|
|
workflow_dispatch:
|
2022-12-04 00:42:59 +00:00
|
|
|
|
|
|
|
env:
|
2023-04-25 01:19:51 +00:00
|
|
|
POETRY_VERSION: "1.4.2"
|
2022-10-24 21:51:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-04 00:42:59 +00:00
|
|
|
python-version:
|
2022-12-13 13:48:53 +00:00
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
2023-05-11 01:57:39 +00:00
|
|
|
test_type:
|
|
|
|
- "core"
|
|
|
|
- "extended"
|
|
|
|
name: Python ${{ matrix.python-version }} ${{ matrix.test_type }}
|
2022-10-24 21:51:15 +00:00
|
|
|
steps:
|
2022-12-13 13:48:53 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-05-10 13:35:07 +00:00
|
|
|
uses: "./.github/actions/poetry_setup"
|
2022-12-13 13:48:53 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2023-05-10 13:35:07 +00:00
|
|
|
poetry-version: "1.4.2"
|
2023-05-11 01:57:39 +00:00
|
|
|
cache-key: ${{ matrix.test_type }}
|
|
|
|
install-command: |
|
|
|
|
if [ "${{ matrix.test_type }}" == "core" ]; then
|
|
|
|
echo "Running core tests, installing dependencies with poetry..."
|
|
|
|
poetry install
|
|
|
|
else
|
|
|
|
echo "Running extended tests, installing dependencies with poetry..."
|
|
|
|
poetry install -E extended_testing
|
|
|
|
fi
|
2023-05-11 02:36:50 +00:00
|
|
|
- name: Run ${{matrix.test_type}} tests
|
2022-12-13 13:48:53 +00:00
|
|
|
run: |
|
2023-05-12 18:50:08 +00:00
|
|
|
if [ "${{ matrix.test_type }}" == "core" ]; then
|
|
|
|
make test
|
|
|
|
else
|
|
|
|
make extended_tests
|
|
|
|
fi
|
2023-05-11 01:57:39 +00:00
|
|
|
shell: bash
|