Skip to content

Commit c365ce4

Browse files
authored
Create tests.yml
1 parent 5cf37f0 commit c365ce4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/tests.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: xsref tests
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
xsref_tests:
7+
name: xsref table consistency tests
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
11+
12+
- name: Setup Python
13+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
14+
with:
15+
python-version: '3.12'
16+
17+
- name: Install xsref and dependencies
18+
run: pip install .[test]
19+
20+
- name: Run tests
21+
run: pytest

0 commit comments

Comments
 (0)