Skip to content

Commit

Permalink
Add CI to make sure the starter kit builds
Browse files Browse the repository at this point in the history
  • Loading branch information
harmony7 committed Mar 11, 2024
1 parent 7f67e23 commit bfa0138
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on: pull_request
name: Test
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
- name: Setup Fastly CLI
uses: fastly/compute-actions/setup@v5
- name: Build and test
uses: fastly/compute-actions/build@v5
with:
verbose: true

0 comments on commit bfa0138

Please sign in to comment.