Skip to content

implementation of an AST -> SCFG transformer #334

implementation of an AST -> SCFG transformer

implementation of an AST -> SCFG transformer #334

Workflow file for this run

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: |
make conda-install
- name: Run pre-commit
shell: bash -l {0}
run: |
pre-commit run -a
- name: Setup numba_rvsdg
shell: bash -l {0}
run: |
make build
- name: Run pytest and Print Report
shell: bash -l {0}
run: |
make test