From 67cfae9a89aae90d429af8e2deb6f50d67ffef68 Mon Sep 17 00:00:00 2001 From: michplunkett <5885605+michplunkett@users.noreply.github.com> Date: Fri, 29 Dec 2023 01:03:20 -0600 Subject: [PATCH] Update test_prs.yml --- .github/workflows/test_prs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test_prs.yml b/.github/workflows/test_prs.yml index 0e063c240..f38a7b0bd 100644 --- a/.github/workflows/test_prs.yml +++ b/.github/workflows/test_prs.yml @@ -1,28 +1,20 @@ name: CI -# Controls when the action will run. on: pull_request: branches: - develop - main - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: - # The type of runner that the job will run on runs-on: ubuntu-20.04 env: FLASK_APP: OpenOversight.app strategy: matrix: python-version: ["3.11", "3.12"] - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - name: Run tests run: PYTHON_VERSION=${{ matrix.python-version }} make test_with_version