Skip to content

Commit

Permalink
Using github actions for running tests (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakwc authored Sep 2, 2024
1 parent 0dbf584 commit 7c5f421
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tests

on:
pull_request:
push:
branches:
- master
tags:
- '*'

jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: run_tests
run: >
ls -la &&
python3 -m pip install -U pytest &&
python3 -m pytest -v -s test_syncobj.py

0 comments on commit 7c5f421

Please sign in to comment.