Skip to content

Commit

Permalink
Ci:Add initial workflow file (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
souzamari authored Oct 24, 2024
1 parent 7ad605f commit a73b474
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/match-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: match-ci

on: [pull_request]

env:
GOPATH: ${{ github.workspace }}

jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: '${{ env.GOPATH }}/go.mod'
- name: Install dependencies
run: go get ./...
- name: Run tests
run: go test -v ./...

0 comments on commit a73b474

Please sign in to comment.