Skip to content

Commit

Permalink
Merge pull request #4 from mumoshu/add-ci-wf
Browse files Browse the repository at this point in the history
Add CI workflow
  • Loading branch information
cw-atkhry authored Aug 20, 2024
2 parents 4dbc62e + dc94964 commit 412be5e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Start LocalStack
uses: LocalStack/[email protected]
with:
image-tag: 'latest'
install-awslocal: 'true'
- name: Run tests
run: go test -v ./...

0 comments on commit 412be5e

Please sign in to comment.