From a3f29f023d8e969ac05605395d3fe171abdc7f38 Mon Sep 17 00:00:00 2001 From: andrea Date: Mon, 26 Feb 2024 08:34:50 +0100 Subject: [PATCH] Add GitHub build workflow --- .github/workflows/build.yml | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..79748fb --- /dev/null +++ b/.github/workflows/build.yml @@ -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