Merge pull request #84 from NeuromatchAcademy/all-contributors/add-eb… #264
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name : CI | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
env: | |
NB_KERNEL: python3 | |
MPLBACKEND: Agg | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
pip install pytest -r requirements.txt | |
jupyter kernelspec list | |
- name: Execute tests | |
run: make test |