Skip to content

Commit

Permalink
Merge pull request #1 from miyataka/feat/add_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
miyataka committed Dec 31, 2023
2 parents 4c4d485 + e2e89c6 commit 35948e8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

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

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

0 comments on commit 35948e8

Please sign in to comment.