Skip to content

Commit

Permalink
chore: fix branch name in ci script (#234)
Browse files Browse the repository at this point in the history
* chore: fix branch name in ci script

* chore: remove circleci script
  • Loading branch information
Woosang Son authored Jun 9, 2021
1 parent 034c4f2 commit 3ccf391
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 67 deletions.
64 changes: 0 additions & 64 deletions .circleci/config.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Tests / Code Coverage
# Tests / Code Coverage workflow runs unit tests and uploads a code coverage report
# This workflow is run on pushes to v2/develop & every Pull Requests where a .go, .mod, .sum have been changed
# This workflow is run on pushes to develop & every Pull Requests where a .go, .mod, .sum have been changed
env:
GOPRIVATE: "github.com/line/*"

on:
pull_request:
push:
branches:
- v2/develop
- develop
jobs:
cleanup-runs:
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/v2/develop'"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/develop'"

install-tparse:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3ccf391

Please sign in to comment.