diff --git a/.gitea/workflows/mypy.yaml b/.gitea/workflows/mypy.yaml deleted file mode 100644 index 3c1604d..0000000 --- a/.gitea/workflows/mypy.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: Mypy -# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 -on: [push] - -jobs: - 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 diff --git a/.gitea/workflows/pytest.yaml b/.gitea/workflows/pytest.yaml index 8839413..fe4b961 100644 --- a/.gitea/workflows/pytest.yaml +++ b/.gitea/workflows/pytest.yaml @@ -1,4 +1,4 @@ -name: Pytest +name: Testing # run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] @@ -12,3 +12,13 @@ jobs: - 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