Update Github Actions, cigolang-lint and apply linter #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Development | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| # For the moment golangci-lint uses the previous commit as reference | |
| # with the `new-from-rev: HEAD~1` config | |
| fetch-depth: 2 | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: latest | |
| args: "-v --timeout=5m" | |
| test-build-upload: | |
| strategy: | |
| matrix: | |
| go-version: [1.22.x] | |
| platform: [ubuntu-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Test | |
| run: go test ./... -mod=vendor | |
| - name: Build | |
| run: | | |
| mkdir -p output/win | |
| mkdir -p output/lin | |
| mkdir -p output/arm | |
| mkdir -p output/mac | |
| HASH=$(git log --pretty=format:'%h' -n 1) | |
| VERSION=$(git describe --tags --always) | |
| CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$HASH" -o "output/lin/matterbridge-$VERSION-linux-amd64" | |
| CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$HASH" -o "output/win/matterbridge-$VERSION-windows-amd64.exe" | |
| CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$HASH" -o "output/mac/matterbridge-$VERSION-darwin-amd64" | |
| - name: Upload linux 64-bit | |
| if: startsWith(matrix.go-version,'1.22') | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: matterbridge-linux-64bit | |
| path: output/lin | |
| - name: Upload windows 64-bit | |
| if: startsWith(matrix.go-version,'1.22') | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: matterbridge-windows-64bit | |
| path: output/win | |
| - name: Upload darwin 64-bit | |
| if: startsWith(matrix.go-version,'1.22') | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: matterbridge-darwin-64bit | |
| path: output/mac |