diff --git a/.github/workflows/submit_pz_resnet_flow.yaml b/.github/workflows/submit_pz_resnet_flow.yaml deleted file mode 100644 index 6f06808..0000000 --- a/.github/workflows/submit_pz_resnet_flow.yaml +++ /dev/null @@ -1,38 +0,0 @@ ---- -# This workflow will install Python dependencies and run tests - -name: Unit test and code coverage - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['3.13'] - submission: ['pz_resnet_flow'] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - sudo apt-get update - sudo apt install libbz2-dev - python -m pip install --upgrade pip - pip install wheel - pip install . - pip install .[dev] - if [ -f requirements_${{ matrix.submission }}.txt ]; then pip install -r requirements_${{ matrix.submission }}.txt; fi - - name: Run unit tests with pytest - run: | - python -m pytest tests/test_${{ matrix.submission }}.py