Skip to content

Commit

Permalink
Added action config, add tests later...
Browse files Browse the repository at this point in the history
  • Loading branch information
ncowan8 committed Apr 16, 2022
1 parent f71699a commit 26a4a90
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Go

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.18

- name: Test
run: go test -v ./...
2 changes: 1 addition & 1 deletion starlingGo.go → starling.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package starlingGo
package starlinggo

import (
"encoding/json"
Expand Down

0 comments on commit 26a4a90

Please sign in to comment.