Skip to content

Update workflow practices #109

Update workflow practices

Update workflow practices #109

Workflow file for this run

name: Validate
on:
pull_request:
push:
branches:
- master
concurrency:

Check failure on line 9 in .github/workflows/validate.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/validate.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
group: {{ github.workflow }}-{{ github.event_name }}-{{ github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --upgrade-strategy=eager pip-run
- name: Validate data file
run: pip-run -q -- validate.py
# vim:set et sts=2: