org-rw/.gitea/workflows/pytest.yaml
Workflow config file is invalid. Please check your config file: yaml: line 26: did not find expected key
Sergio Martínez Portela 2a1c27183b Add extra-test validation.
2023-10-15 23:41:20 +02:00

32 lines
851 B
YAML

name: Testing
# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install pytest
- run: pytest
mypy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install mypy
- run: mypy org_rw
stability-extra-test:
runs-on: ubuntu-latest
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y git-core
- run: bash extra-tests/check_all.sh