Skip to content

Commit

Permalink
ci: add Github Actions workflow to run checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ahal committed Jun 27, 2024
1 parent 12cd989 commit b589219
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: validate
on: [push]

jobs:
check:
runs-on: ubuntu:latest
strategy:
matrix:
environment: ["staging", "firefoxci"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Install dependencies
run: pip install -r requirements/test.txt
- name: Run checks
run: tc-admin check --environment ${{matrix.environment}}

0 comments on commit b589219

Please sign in to comment.