Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aliml92 authored Jun 19, 2024
1 parent 913e68a commit 84c5e40
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

test:
name: Test
runs-on: ubuntu-latest
steps:

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.0

- name: Check out code
uses: actions/checkout@v3

- name: Run unit tests
run: make test

- name: Run integration tests
run: make integration-test

0 comments on commit 84c5e40

Please sign in to comment.