Skip to content

Commit

Permalink
fix(ci): Format yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
esloch committed Dec 1, 2023
1 parent bfdf9f9 commit 347e9a7
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,38 @@
name: build
name: maketests

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
strategy:
matrix:
python-version:
- "3.9"

- '3.9'
concurrency:
group: ci-${{ github.ref }}
group: 'ci-${{ github.ref }}'
cancel-in-progress: true

defaults:
run:
shell: bash -l {0}
shell: 'bash -l {0}'

steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: latest
mamba-version: "*"
mamba-version: '*'
environment-file: conda/dev.yaml
channels: conda-forge,nodefaults
channels: 'conda-forge,nodefaults'
activate-environment: pysus
use-mamba: true
miniforge-variant: Mambaforge

- name: Install and set config poetry
- name: Install dependencies
run: |
export PATH="$HOME/.poetry/bin:$PATH"
curl -sSL https://install.python-poetry.org/ | python -
poetry config virtualenvs.create false
export PATH="$HOME/.poetry/bin:$PATH"
poetry config virtualenvs.create false
- name: Install main dependencies
run: |
Expand Down

0 comments on commit 347e9a7

Please sign in to comment.