Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/0x3alex/Gorage
Browse files Browse the repository at this point in the history
  • Loading branch information
ax4w committed Nov 13, 2023
2 parents 39cd9a0 + a81b557 commit 725a74b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Go
on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test

0 comments on commit 725a74b

Please sign in to comment.