Skip to content

Commit

Permalink
Update and rename makefile.yml to ci.yml
Browse files Browse the repository at this point in the history
Add step to setup Anaconda and activate the local environment
  • Loading branch information
seatonullberg authored Oct 9, 2023
1 parent 628a8fc commit f8d6e91
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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
21 changes: 0 additions & 21 deletions .github/workflows/makefile.yml

This file was deleted.

0 comments on commit f8d6e91

Please sign in to comment.