Skip to content

Update readme

Update readme #139

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ["3.0", "5.0", "6.0", "7.0", "8.0"]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies
run: nuget restore Omise.sln
- name: Test
run: make test TargetDotNet=${{ matrix.dotnet }}