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 805f5b2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Empty file added .github/workflows/deploy.yml
Empty file.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Checks
on: [push]

jobs:
check:
runs-on: ubuntu:latest
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: ci-admin check

0 comments on commit 805f5b2

Please sign in to comment.