Skip to content

Update and rename makefile.yml to ci.yml #1

Update and rename makefile.yml to ci.yml

Update and rename makefile.yml to ci.yml #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
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