Skip to content

Commit

Permalink
fixed CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
krauthaufen committed Mar 19, 2022
1 parent dde616b commit b6f884e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Checkout
uses: actions/checkout@v2
- name: Install Dotnet
uses: actions/setup-dotnet@v1
with:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ on:

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2
- name: Install Dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.100'
- name: Build
run: bash ./build.sh
8 changes: 6 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ on:

jobs:
build:

runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Checkout
uses: actions/checkout@v2
- name: Install Dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.100'
- name: build
run: .\build.cmd

0 comments on commit b6f884e

Please sign in to comment.