Skip to content

Commit

Permalink
Add GH CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s7nfo committed Jul 1, 2024
1 parent 2f34b7d commit 6d03042
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Specify the Python version you need

- name: Run tests
run: make test-python

0 comments on commit 6d03042

Please sign in to comment.