From b5089e2d783a6d5444c791e1b588968327cde3bd Mon Sep 17 00:00:00 2001 From: Taylor Isbell Date: Wed, 24 Apr 2024 15:26:23 -0500 Subject: [PATCH] try again --- .github/workflows/push.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index dff677bd..59553005 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -7,12 +7,9 @@ on: branches: ['*'] workflow_dispatch: -env: - OS: ubuntu-latest - jobs: lint-and-check: - runs-on: ${{ env.OS }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: @@ -34,7 +31,7 @@ jobs: run: tox -e type-check analyze: - runs-on: "${{ env.OS }}" + runs-on: ubuntu-latest permissions: actions: read contents: read @@ -74,7 +71,7 @@ jobs: test: needs: lint-and-check - runs-on: "${{ env.OS }}" + runs-on: ubuntu-latest strategy: matrix: python-version: ['3.8', '3.9', '3.10']