Skip to content

Commit

Permalink
initiate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hafizxd committed Feb 7, 2024
1 parent 7c819b0 commit b1b3d2c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflow/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: ci-test

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

jobs:

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Test
run: make test
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b1b3d2c

Please sign in to comment.