Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wraikny committed Dec 3, 2023
1 parent 450eb37 commit c7a4a4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
6 changes: 0 additions & 6 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
"version": 1,
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.23.1",
"commands": [
"fake"
]
},
"fantomas": {
"version": "5.0.6",
"commands": [
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
dotnet: [6.0.x]
dotnet: [7.0.x]
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -27,10 +27,10 @@ jobs:
run: dotnet tool restore

- name: Build
run: dotnet fake build
run: dotnet fsi build.fsx

- name: Format(Chack)
run: dotnet fake build -t format.check
run: dotnet fsi build.fsx -t format.check

- name: Test
run: dotnet fake build -t test
run: dotnet fsi build.fsx -t test

0 comments on commit c7a4a4a

Please sign in to comment.