Makefile: Stop building release tarballs with Docker #186
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
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.22.4" | |
- name: Install APT-based build dependencies | |
run: > | |
sudo apt-get update && | |
sudo apt-get install make protobuf-compiler | |
- name: Run static analysis | |
run: make check checktidy | |
- name: Run tests | |
run: make test |