Skip to content

Commit

Permalink
split workflows and rename
Browse files Browse the repository at this point in the history
  • Loading branch information
trstringer committed Oct 9, 2020
1 parent c38f840 commit ab98332
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: ci

on:
push:
branch:
- master
pull_request:

jobs:
build_test:
name: build_test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: build
run: make build
- name: test
run: make test
10 changes: 6 additions & 4 deletions .github/workflows/cicd.yaml → .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: release

on:
push:
branch:
- master
tags:
- '*'

jobs:
build:
name: cicd
build_release:
name: build_release
runs-on: ubuntu-latest
steps:
- name: checkout
Expand Down

0 comments on commit ab98332

Please # to comment.