Skip to content

Commit

Permalink
Add simple CI check.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzohrab committed Apr 11, 2024
1 parent e388176 commit 2691702
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci

on:
push:
branches: [ "develop", "master" ]
pull_request:
branches: [ "develop", "master" ]

permissions:
contents: read

jobs:

# Run all tests.
base-ci:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: 3.11
cache: 'pip' # caching pip dependencies

- run: pip install -r requirements.txt

- name: Test
run: |
set -e
python verify_files.py

0 comments on commit 2691702

Please sign in to comment.