85 lines
2.1 KiB
YAML
Raw Normal View History

2024-11-27 16:30:24 +01:00
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
linter:
strategy:
fail-fast: false
matrix:
2024-11-27 19:04:30 +01:00
dotnet-version: [9.0.X]
2024-11-27 16:30:24 +01:00
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
2024-11-27 19:04:30 +01:00
- uses: actions/setup-dotnet@v4
2024-11-27 16:30:24 +01:00
with:
2024-11-27 19:04:30 +01:00
dotnet-version: ${{ matrix.dotnet-version }}
2024-11-27 16:30:24 +01:00
- name: Run linter
run: make lint
tests_linux:
needs: linter
strategy:
fail-fast: false
matrix:
2024-11-27 19:04:30 +01:00
dotnet-version: [9.0.X]
2024-11-27 16:30:24 +01:00
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
2024-11-27 19:04:30 +01:00
- uses: actions/setup-dotnet@v4
2024-11-27 16:30:24 +01:00
with:
2024-11-27 19:04:30 +01:00
dotnet-version: ${{ matrix.dotnet-version }}
2024-11-27 16:30:24 +01:00
- name: Run tests
run: make test
# tests_mac:
# needs: linter
# strategy:
# fail-fast: false
# matrix:
2024-11-27 19:04:30 +01:00
# dotnet-version: [9.0.X]
2024-11-27 16:30:24 +01:00
# os: [macos-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
2024-11-27 19:04:30 +01:00
# - uses: actions/setup-dotnet@v4
2024-11-27 16:30:24 +01:00
# with:
2024-11-27 19:04:30 +01:00
# dotnet-version: ${{ matrix.dotnet-version }}
2024-11-27 16:30:24 +01:00
# - name: Install project
# run: make install
# - name: Run tests
# run: make test
# tests_win:
# needs: linter
# strategy:
# fail-fast: false
# matrix:
2024-11-27 19:04:30 +01:00
# dotnet-version: [9.0.X]
2024-11-27 16:30:24 +01:00
# os: [windows-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
2024-11-27 19:04:30 +01:00
# - uses: actions/setup-dotnet@v4
2024-11-27 16:30:24 +01:00
# with:
2024-11-27 19:04:30 +01:00
# dotnet-version: ${{ matrix.dotnet-version }}
2024-11-27 16:30:24 +01:00
# - name: Install Pip
# run: pip install --user --upgrade pip
# - name: Install project
# run: pip install -e .[test]
# - name: run tests
# run: pytest -s -vvvv -l --tb=long tests