Skip to content

first working example #4

first working example

first working example #4

Workflow file for this run

name: build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ master ]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: "8.0.x"
- name: Build
run: dotnet build OpenMeteo
- name: Test
run: dotnet test OpenMeteo.Tests