Skip to content

[526] replaced checkout action #46

[526] replaced checkout action

[526] replaced checkout action #46

name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
# uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade pip poetry
- name: Set up project
run: |
cd $GITHUB_WORKSPACE
poetry install
- name: Run unit tests
run: poetry run pytest