Skip to content

Commit

Permalink
Add GitHub build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea committed Feb 26, 2024
1 parent dc5244c commit a3f29f0
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: build
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
go-version: [~1.18, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v4

- name: Download Go modules
run: go mod download

- name: Build
run: go build -v ./...

- name: Test
run: go test ./...

- name: Build examples
run: go build -v ./...
working-directory: ./examples

- name: Test examples
run: go test -v ./...
working-directory: ./examples

- name: Build tutorials
run: go build -v ./...
working-directory: ./tutorials

0 comments on commit a3f29f0

Please sign in to comment.