adding release notes for 0.0.3 #289
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
auto-activate-base: false | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
conda install graphviz python=3.11 | |
pip install pytest pyyaml graphviz coverage | |
- name: Setup numba_rvsdg | |
shell: bash -l {0} | |
run: | | |
pip install -e . | |
- name: Run pytest and Generate Report | |
shell: bash -l {0} | |
run: | | |
coverage run -m pytest numba_rvsdg/tests/ | |
- name: Display Coverage | |
shell: bash -l {0} | |
run: | | |
coverage report |