We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf37f0 commit c365ce4Copy full SHA for c365ce4
.github/workflows/tests.yml
@@ -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