Skip to content

Update actions/setup-python action to v6.1.0 #599

Update actions/setup-python action to v6.1.0

Update actions/setup-python action to v6.1.0 #599

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
fetch-depth: 0
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0
with:
auto-update-conda: true
auto-activate-base: false
- name: Install dependencies
run: make conda-install
- name: Lint code with pre-commit
run: make lint
- name: Install numba_scfg with pip
run: make build
- name: Run pytest and print coverage Report
run: make test