aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-01-22 11:43:56 -0300
committerEuAndreh <eu@euandre.org>2025-01-22 11:43:56 -0300
commita04b223253ab93bbc475463563e2d251bd3dab5e (patch)
tree0e0f57685a95530db08e8582c0838799a21f9539 /.github/workflows/go.yml
parentMerge branch 'generic-immutable' (diff)
downloadstm-a04b223253ab93bbc475463563e2d251bd3dab5e.tar.gz
stm-a04b223253ab93bbc475463563e2d251bd3dab5e.tar.xz
Remove unused files
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
deleted file mode 100644
index 6519f90..0000000
--- a/.github/workflows/go.yml
+++ /dev/null
@@ -1,23 +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: Go
-
-on:
- push:
- pull_request:
-
-jobs:
-
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
-
- - name: Set up Go
- uses: actions/setup-go@v3
- with:
- go-version: 1.18
-
- - name: Test
- run: go test -v ./...