Skip to content

Commit

Permalink
Added noshadows tests to GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmispelon authored and felixxm committed Feb 1, 2024
1 parent 84a01a0 commit cc32061
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
noshadows:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.6'
- run: pip install tinycss2
- run: python noshadows.py --tests

0 comments on commit cc32061

Please sign in to comment.