We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a01a0 commit a1b9c80Copy full SHA for a1b9c80
.github/workflows/tests.yml
@@ -0,0 +1,26 @@
1
+name: Tests
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
13
+permissions:
14
+ contents: read
15
16
+jobs:
17
+ noshadows:
18
+ runs-on: ubuntu-20.04
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - uses: actions/setup-python@v5
23
+ with:
24
+ python-version: '3.7'
25
+ - run: pip install "tinycss2>=1.2.0"
26
+ - run: python noshadows.py --tests
0 commit comments