test in dockerfile

This commit is contained in:
Thephaseless 2024-09-13 18:30:48 +00:00
parent 88e7321daa
commit 4dbb63842b

View File

@ -22,33 +22,8 @@ env:
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Run image
uses: abatilo/actions-poetry@v2
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Run tests
run: poetry run pytest -v
build:
runs-on: ubuntu-latest
needs: test
permissions:
contents: read
packages: write