Skip to content

Update conda-incubator/setup-miniconda action to v3.1.1 #524

Update conda-incubator/setup-miniconda action to v3.1.1

Update conda-incubator/setup-miniconda action to v3.1.1 #524

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@v4
with:
fetch-depth: 0
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@505e6394dae86d6a5c7fbb6e3fb8938e3e863830 # v3.1.1
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