Skip to content

Commit

Permalink
add test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Sep 7, 2023
1 parent d468be1 commit a81f2de
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@master
- name: Test
uses: n8maninger/action-golang-test@v1
env:
AWS_EC2_METADATA_DISABLED: true
with:
package: "./..."
args: "-race;-tags='testing';-timeout=30m"

0 comments on commit a81f2de

Please sign in to comment.