-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (29 loc) · 767 Bytes
/
validate.yml
File metadata and controls
37 lines (29 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Validate
on:
pull_request:
push:
branches:
- master
concurrency:
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: