Skip to content

fix miniconda actions #4

fix miniconda actions

fix miniconda actions #4

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
python-version: ${{ matrix.python-version }}
environment-file: environment-dev.yml
miniconda-version: "latest"
- name: Install Test dependencies
run: |
pip install flake8 pytest
- name: Lint with black
uses: psf/black@stable