Skip to content

Commit 5a61f05

Browse files
committed
revisited test workflow and added deploy workflow
1 parent 59b98e0 commit 5a61f05

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy Worklow
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Build and Push
16+
run: make build ci-push

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
17-
- name: Install dependencies
18-
run: make
19-
2016
- name: Run check
2117
run: make check
22-
18+
2319
- name: Run test
2420
run: make test

0 commit comments

Comments
 (0)