Skip to content

Commit

Permalink
Merge pull request #93 from snok/test-workflow
Browse files Browse the repository at this point in the history
Fix broken test workflow
  • Loading branch information
sondrelg committed Oct 6, 2022
2 parents 024bf05 + 311f057 commit 5812725
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -8,13 +8,13 @@ on: pull_request

env:
# JSON variables (used in our strategy/matrix)
SUPPORTED_POETRY_VERSIONS: '\"poetry-version\":[\"1.1.0\", \"1.1.10\", \"1.1.14\", \"1.2.0a2\", \"1.2.0b1\", \"1.2.0b2\", \"1.2.0b3\"]'
SUPPORTED_PYTHON_VERSIONS: '\"python-version\":[\"3.7\", \"3.9\", \"3.10.0-rc.2\"]'
SUPPORTED_POETRY_VERSIONS: '\"poetry-version\":[\"1.1.14\", \"1.2.1\"]'
SUPPORTED_PYTHON_VERSIONS: '\"python-version\":[\"3.7\", \"3.10\", \"3.11.0-rc.1\"]'
SUPPORTED_OPERATING_SYSTEMS: '\"os\":[\"ubuntu-latest\", \"macos-latest\", \"windows-latest\"]'

# Normal variables (used in steps/*)
LATEST_PYTHON: "3.10"
LATEST_POETRY: "1.1.14"
LATEST_POETRY: "1.2.1"

jobs:
# The set-env job translates our json variables to a format we
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
# feel free to update it
- run: |
source .github/scripts/assert.sh
assert_in "${{LATEST_POETRY}} "$(poetry --version)"
assert_in "${{ env.LATEST_POETRY }}" "$(poetry --version)"
# Make sure scripts are not deleted.
# If we deleted the scripts folder (or subfolders) by accident,
Expand Down

0 comments on commit 5812725

Please sign in to comment.