Skip to content

Commit 8f6c6cf

Browse files
committed
lotus: Try to build on GH Actions
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 90ce2e0 commit 8f6c6cf

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/lotus.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Unit Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
- lotus
9+
10+
jobs:
11+
lotus-build:
12+
runs-on: ubuntu-latest
13+
14+
container: qmkfm/qmk_cli
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
submodules: recursive
20+
- name: Install dependencies
21+
run: pip3 install -r requirements-dev.txt
22+
- name: Run tests
23+
run: make test:all
24+
- name: Build Lotus
25+
run: qmk compile -kb lotus -km default

0 commit comments

Comments
 (0)