diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml deleted file mode 100644 index a866d90..0000000 --- a/.github/workflows/unit_tests.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: unit_tests - -on: - pull_request: - -jobs: - test: - runs-on: ubuntu-22.04 - timeout-minutes: 30 - strategy: - matrix: - env: - - pep8 - - py39 - - py311 - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Install dependencies - run: ./tools/install_deps.sh - - name: Run tox - run: tox -e ${{ matrix.env }}