Skip to content

Commit

Permalink
Builds and tests the golang client library
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreds committed Jul 2, 2024
1 parent 63d9a80 commit 0a5ba07
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This is a starting workflow for building with GitHub Actions
name: Build

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
# Check out code
- uses: actions/checkout@v4
- uses: actions/setup-go@v5

# Compile
- name: Test that we can compile
run: cd pkg/fusionauth && go build
# Compile
- name: Run tests
run: cd pkg/fusionauth && go test
# Done!

0 comments on commit 0a5ba07

Please sign in to comment.