Skip to content

Commit

Permalink
correct yml syntax [1]
Browse files Browse the repository at this point in the history
  • Loading branch information
jGaboardi committed Mar 17, 2024
1 parent 5df9099 commit 8a14bd4
Showing 1 changed file with 63 additions and 72 deletions.
135 changes: 63 additions & 72 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -1,86 +1,77 @@
name: Tests

on:
push:
branches:
- '*'
branches: [main]
pull_request:
branches:
- '*'
schedule:
- cron: '59 23 * * *'
- cron: "0 0 * * 1,4"
workflow_dispatch:
inputs:
version:
description: Manual Unittest Run
default: test
required: false

on:
push:
branches: [main]
pull_request:
branches:
- "*"
schedule:
- cron: "0 0 * * 1,4"

jobs:
Tests:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
environment-file:
- ci/310.yml
- ci/311.yml
- ci/312.yml
include:
- environment-file: ci/311.yml
os: macos-latest
- environment-file: ci/311.yml
os: macos-14 # Apple Silicon
- environment-file: ci/311.yml
os: windows-latest
defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v4

- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'

- name: Test segregation
run: |
coverage run -m pytest \
-v \
-r a \
-n auto \
--color yes \
--cov segregation \
--cov-append \
--cov-report term-missing \
--cov-report xml \
segregation
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: segregation-codecov

- name: Generate and publish the report
if: |
failure()
&& steps.status.outcome == 'failure'
&& github.event_name == 'schedule'
&& github.repository_owner == 'oturns'
uses: xarray-contrib/issue-from-pytest-log@v1
with:
log-path: pytest-log.jsonl
jobs:
Tests:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
environment-file:
- ci/310.yml
- ci/311.yml
- ci/312.yml
include:
- environment-file: ci/311.yml
os: macos-latest
- environment-file: ci/311.yml
os: macos-14 # Apple Silicon
- environment-file: ci/311.yml
os: windows-latest
defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v4

- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'

- name: Test segregation
run: |
coverage run -m pytest \
-v \
-r a \
-n auto \
--color yes \
--cov segregation \
--cov-append \
--cov-report term-missing \
--cov-report xml \
segregation
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: segregation-codecov

- name: Generate and publish the report
if: |
failure()
&& steps.status.outcome == 'failure'
&& github.event_name == 'schedule'
&& github.repository_owner == 'oturns'
uses: xarray-contrib/issue-from-pytest-log@v1
with:
log-path: pytest-log.jsonl

0 comments on commit 8a14bd4

Please sign in to comment.