Update to dmsg #48
Workflow file for this run
This file contains 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
on: [pull_request] | |
name: Test | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Requirements | |
run: | | |
sudo apt update | |
make install-tools | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2 | |
- name: Test | |
run: make check |