mirror of
https://github.com/QualityInUse/lab0-maksktl.git
synced 2026-08-05 13:55:25 +03:00
Lab 0
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
name: lab-0
|
||||
name: code quality tests
|
||||
|
||||
# add your pipline description below
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11.6'
|
||||
- name: Run image
|
||||
uses: abatilo/actions-poetry@v2
|
||||
with:
|
||||
poetry-version: '1.7.1'
|
||||
- name: Install dependencies
|
||||
run: poetry install; poetry add pytest
|
||||
- name: Run pytest
|
||||
run: poetry run pytest .
|
||||
Reference in New Issue
Block a user