We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8139f51 commit 83c1ee5Copy full SHA for 83c1ee5
.github/workflows/tests.yml
@@ -0,0 +1,20 @@
1
+---
2
+# yamllint disable rule:line-length
3
+name: Test healthcheck repo
4
+
5
+on: # yamllint disable-line rule:truthy
6
+ push:
7
+ pull_request:
8
9
+jobs:
10
+ simpletest:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Verify healthcheck docker build and up
15
+ run: |
16
+ sudo apt-get -y install git
17
+ git clone https://github.com/Baylibre/lava-docker
18
+ cd lava-docker && ./lavalab-gen.py boards-ci-hc.yaml
19
+ docker compose build
20
+ # TODO up and check qemu worked
0 commit comments