We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b98e0 commit 5a61f05Copy full SHA for 5a61f05
2 files changed
.github/workflows/deploy.yml
@@ -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
@@ -13,12 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v3
-
17
- - name: Install dependencies
18
- run: make
19
20
- name: Run check
21
run: make check
22
23
- name: Run test
24
run: make test
0 commit comments