Skip to content

Commit

Permalink
Add initial CI job for GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 24, 2024
1 parent 94dfc33 commit b4dbd57
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on: [push, pull_request]

jobs:
test-linux:
runs-on: ubuntu-latest
name: Ubuntu Latest
steps:
- name: Checkout ReBench
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4

- name: Install PyTest
run: pip install pytest

- name: Run PyTest
run: pytest

0 comments on commit b4dbd57

Please sign in to comment.