Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seatonullberg authored Oct 9, 2023
1 parent f8d6e91 commit 7abe985
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ on:

jobs:
build:

runs-on: ubuntu-latest

name: (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.11", "3.8"]
steps:
- uses: actions/checkout@v3

- name: Setup Anaconda
uses: actions/setup-python@v2
with:
python-version: 3.11

- name: Install dependencies
run: $CONDA/bin/conda env create -f environment.yml && $CONDA/bin/conda activate plotting-tools

- name: Format
run: make fmt
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
auto-activate-base: false
activate-environment: plotting-tools
- run: make fmt

0 comments on commit 7abe985

Please sign in to comment.