Skip to content

feat: add semantic-release action, update golang version, add devcont… #100

feat: add semantic-release action, update golang version, add devcont…

feat: add semantic-release action, update golang version, add devcont… #100

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: build
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.21
- run: go build ./...
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.21
- run: go test ./...