Skip to content

Commit

Permalink
Fix zig and flutter versions in workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEricNitschke committed May 15, 2024
1 parent 024f1bf commit 31b166b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/csharp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ jobs:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
- run: dotnet build tictactoe_csharp.csproj
- name: Build
run: dotnet build tictactoe_csharp.csproj
3 changes: 2 additions & 1 deletion .github/workflows/dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- uses: subosito/flutter-action@v2
with:
cache: true
channel: 'stable' # or: 'beta', 'dev' or 'master'
channel: stable
flutter-version: 3.19.0
- name: Setup flutter dependencies
run: |
flutter --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/zig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
uses: actions/checkout@v4
- name: Setup zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0
- name: Check formatting
run: zig fmt --check src/*.zig
- name: Build
Expand Down

0 comments on commit 31b166b

Please sign in to comment.