Skip to content

Commit

Permalink
Merge pull request #15 from DeNA/replace/ci
Browse files Browse the repository at this point in the history
upload github actions
  • Loading branch information
get-me-power authored Dec 4, 2024
2 parents 76fb6ae + d9f3df6 commit 9e826e2
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .circleci/config.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Unit Test

on:
workflow_dispatch:
push:
branches:
- master
pull_request:

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

- uses: actions/setup-go@v5
with:
go-version: '1.14'

- name: Install dependencies
run: |
go env
go get -u github.com/go-bindata/go-bindata/go-bindata
- name: Build assets
run: go generate ./...

- name: Test
run: ./test/test-all.bash

0 comments on commit 9e826e2

Please sign in to comment.