Skip to content

Commit

Permalink
added github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mlietzow committed Aug 12, 2024
1 parent 111e531 commit 53fdcc8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

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

jobs:
test-miex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: python3 --version
- run: pip3 --version # for debugging
- run: pip3 install -r requirements.txt
- run: python3 -m pytest --verbosity=2

0 comments on commit 53fdcc8

Please sign in to comment.