Skip to content

Merge branch 'main' of github.com:MuratovAS/0xg0 #3

Merge branch 'main' of github.com:MuratovAS/0xg0

Merge branch 'main' of github.com:MuratovAS/0xg0 #3

Workflow file for this run

name: Go (Build and Test)
on:
push:
branches:
- '*'
paths:
- '**.go'
- '**.mod'
- '**.sum'
pull_request:
branches:
- '*'
paths:
- '**.go'
- '**.mod'
- '**.sum'
jobs:
build_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build
run: go build -v
# - name: Test
# run: go test -v