aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-16 21:28:42 -0300
committerMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-16 21:28:42 -0300
commitcffaf0d6e42c66fd83fa4cb6d4facd759786d8fe (patch)
treeaae8b307e2e2cb48e172a78c2e5237733ab76674 /.github/workflows/go.yml
parent52dcc6987203f768942c789975268dce9743e8d2 (diff)
ci: rename workflow file
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
deleted file mode 100644
index a9d4b04..0000000
--- a/.github/workflows/go.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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: build and test
-
-on:
- push:
- branches: [ "main" ]
- pull_request:
- branches: [ "main" ]
-
-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: cd golings && go build -v ./...
-
- - name: Test
- run: cd golings && go test -v ./...