Files
visual_critical_discourse_a…/.gitea/workflows/default.yaml
T
Brian Bjarke Jensen 65f7b44690
pipeline / Test (push) Failing after 47s
updated workflow
2024-02-25 14:44:49 +01:00

32 lines
837 B
YAML

name: pipeline
run-name: ${{ gitea.actor }} is running the script
runs-on: ubuntu-latest
on: push
image: python:3.12
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Environment
uses: https://github.com/actions/setup-python@v3
with:
python-verison: "3.12"
architecture: "x64"
- name: Install Packages
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
poetry show
- name: PEP8 Check
run: |
poetry run flake8 --version
poetry run flake8 ./src --benchmark
- name: Type Check
run: |
poetry run mypy --version
mypy ./src --disable-error-code=import-untyped