Skip to content

Commit

Permalink
ワークフロー追加
Browse files Browse the repository at this point in the history
  • Loading branch information
eiei114 committed Oct 25, 2023
1 parent a95f823 commit ae54b14
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/auto_mockgen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches:
- main
pull_request:

jobs:

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19

- name: Install dependencies
run: |
go install github.com/golang/mock/mockgen@latest
- name: Generate mocks
run: |
cd app
go generate ./...

0 comments on commit ae54b14

Please sign in to comment.