Skip to content

Merge branch 'main' of https://github.com/Deltares-research/geost #8

Merge branch 'main' of https://github.com/Deltares-research/geost

Merge branch 'main' of https://github.com/Deltares-research/geost #8

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Run linter
run: pixi run lint
test:
runs-on: windows-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Setup older Python versions
run: pixi add python=${{ matrix.python-version }}
- name: Run Tests
run: pixi run test
build:
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Run Tests
run: pixi run test
- name: Publish Code Coverage
uses: codecov/codecov-action@v3
- name: Build Docs
run: pixi run docs