Skip to content

Life is pain

Life is pain #76

Workflow file for this run

name: Checks
on:
push:
pull_request:
branches: [ develop ]
jobs:
checks:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Set the value
id: step_one
run: |

Check failure on line 22 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / Checks

Invalid workflow file

The workflow is not valid. .github/workflows/checks.yml (Line: 22, Col: 14): Unrecognized named-value: 'GITHUB_ENV'. Located at position 1 within expression: GITHUB_ENV .github/workflows/checks.yml (Line: 27, Col: 14): Unrecognized named-value: 'GITHUB_ENV'. Located at position 1 within expression: GITHUB_ENV
Write-Host ${{ GITHUB_ENV }}
Write-Output "action_state=yellow" >> $ {{ GITHUB_ENV }}
- name: Use the value
id: step_two
run: |
Write-Host ${{ GITHUB_ENV }}
Write-Host ${{ action_state }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.txt
# - name: Test with pytest
# run: |
# python runtests.py -vv --full-trace