Skip to content

Commit

Permalink
Update project structure and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danielost committed Oct 24, 2023
1 parent 8b848cb commit 3c4e2ac
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.1
id: go

- name: Check out code
uses: actions/checkout@v2

- name: Run tests
run: go test -v ./tests
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/danielost/sp-box

go 1.21.1

0 comments on commit 3c4e2ac

Please sign in to comment.