Skip to content

Commit

Permalink
⬆️ action
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRossetti committed Jun 6, 2023
1 parent 9d033e1 commit f8de567
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Python Package using Conda

on: [push]
on:
push:
branches: [ master ]
workflow_dispatch:

jobs:
build-linux:
Expand All @@ -20,8 +23,12 @@ jobs:
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda install -c conda-forge graph-tool
conda install pytest flake8
conda config --append channels conda-forge
# conda config --append channels conda-forge
# conda install graph-tool
- name: Install cdlib deps
run: |
conda config --append channels giuliorossetti
conda env update --file environment.yml --name base
- name: Lint with flake8
Expand Down

0 comments on commit f8de567

Please sign in to comment.