diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 6d9732d..0ef39b6 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -44,7 +44,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Setup conda env run: - just create + just c - name: Test with pytest run: | just t diff --git a/justfile b/justfile index 93f31b8..a6eaa6c 100644 --- a/justfile +++ b/justfile @@ -5,7 +5,7 @@ alias c := create set shell := ["bash", "-uc"] create: - conda env -f conda.yaml + conda env create -f conda.yaml install: conda install -f conda.yaml