Skip to content

Bump up version (v0.0.1) #26

Bump up version (v0.0.1)

Bump up version (v0.0.1) #26

Workflow file for this run

---
name: Tests
on:
pull_request:
push:
workflow_dispatch:
inputs: {}
jobs:
build:
name: Tests with Go ${{ matrix.golang }}
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
golang: ["1.21.x"]
steps:
- uses: actions/[email protected]
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
- name: Build
run: go build -v ./...
- name: Run tests
run: ./bin/test