Skip to content

Commit

Permalink
reenabled CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
plandes committed Sep 8, 2023
1 parent 504424c commit 0ca77da
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
pull_request:
push:
paths-ignore:
- '**.md'
- 'doc/*'
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
steps:
- name: Checkout reposistory
uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Prepare tests
run: 'make info deps'

- name: Run tests
run: 'make test'

0 comments on commit 0ca77da

Please sign in to comment.