Skip to content

Commit

Permalink
added ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cparcerisas committed Aug 9, 2023
1 parent 08ad295 commit 08425f4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ci

on:
push:
pull_request:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
test:
strategy:
fail-fast: false
matrix:
python-versions: ["3.8", "3.9"]
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-versions }}

- name: Install dependencies
run: |
sudo apt-get install libsndfile1
make init-dev
- name: Run unit tests
run: |
make test

0 comments on commit 08425f4

Please sign in to comment.