Skip to content

Commit

Permalink
Add running tests on macos
Browse files Browse the repository at this point in the history
It needs because I got bug in go-fuse that specific for macos after autoupdate go-fuse version via dependabot, so it should prevent this bugs in future
  • Loading branch information
dsxack committed Nov 10, 2023
1 parent a63bc15 commit f5ff655
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-releaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: goreleaser
name: Release

on:
push:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Go package
name: Go tests

on:
push:
Expand All @@ -11,10 +11,11 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ '1.21', 'stable' ]
os: [ ubuntu-latest, macos-13 ]
name: Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: golangci-lint
name: Lint
on:
push:
tags:
Expand Down

0 comments on commit f5ff655

Please sign in to comment.