Skip to content

Commit

Permalink
Add golang-test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rj1k authored Aug 17, 2023
1 parent a92aab1 commit cd0cbd8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/golang-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Go Test Check

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

permissions:
contents: read
pull-requests: read

jobs:
build:
name: Test
runs-on: ubuntu-latest

steps:
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false

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

- name: Test
run: |
make test

0 comments on commit cd0cbd8

Please sign in to comment.