We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d9b37 commit c0f7062Copy full SHA for c0f7062
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - master
8
+ pull_request:
9
10
11
12
+jobs:
13
+ build:
14
+ name: build
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v3
19
+ - name: Install minikube
20
+ uses: medyagh/setup-minikube@master
21
+ with:
22
+ driver: none
23
+ - name: Install Bats
24
+ run: |
25
+ set -ex
26
+ git clone https://github.com/bats-core/bats-core.git
27
+ cd bats-core
28
+ sudo ./install.sh /usr/local
29
+ - name: Make
30
31
32
+ export PATH="$(pwd)/bin:$PATH"
33
+ make
.travis.yml
0 commit comments