Skip to content

Commit

Permalink
Create ci-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AFis-245 authored Nov 12, 2024
1 parent 0f19ca7 commit 1b663a3
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: test-pr

on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: "0 0 1 * *"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}

steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest jupyter nbconvert
pip install -r requirements.txt
- name: "Build notebooks"
run: |
ln -s img tests/img
pytest -v tests/tests.py

0 comments on commit 1b663a3

Please sign in to comment.