Skip to content

Commit

Permalink
added build code
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensbox committed Mar 31, 2024
1 parent 4839e56 commit 75a2d4e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 61 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/build-test.yml

This file was deleted.

13 changes: 8 additions & 5 deletions .github/workflows/go.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# 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
name: Run test

on:
push:
branches: [ '*' ]

branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!master' # excludes master
jobs:

integration_tests:
Expand All @@ -23,8 +26,8 @@ jobs:
with:
go-version: ${{ matrix.go_version }}

- name: Build
- name: Build code
run: go build -v ./...

- name: Test
- name: Running test
run: go test -v ./...

0 comments on commit 75a2d4e

Please sign in to comment.