Skip to content

Commit

Permalink
noddy test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesw committed Mar 26, 2024
1 parent 6144b29 commit f2ae2cb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test
on: [push, pull_request]
jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Make test.sh executable
run: chmod +x test.sh
- name: Run test.sh
run: ./test.sh

0 comments on commit f2ae2cb

Please sign in to comment.