Skip to content

Bump braces from 3.0.2 to 3.0.3 in /web/index (#37) #180

Bump braces from 3.0.2 to 3.0.3 in /web/index (#37)

Bump braces from 3.0.2 to 3.0.3 in /web/index (#37) #180

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v main.go
- name: Test
run: go test -v ./...