Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Merge pull request #323 from spacemeshos/dependabot/go_modules/releas… #3

Merge pull request #323 from spacemeshos/dependabot/go_modules/releas…

Merge pull request #323 from spacemeshos/dependabot/go_modules/releas… #3

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "release/go/go.mod"
- name: lint and check build
run: |
# Runs the buf linter
make lint
# Checks for breaking changes against master
make breaking
# Create an actual build, then diff it to make sure build is up to date
make check