Skip to content

Commit

Permalink
lotus: Try to build on GH Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Schaefer <[email protected]>
  • Loading branch information
JohnAZoidberg committed Dec 20, 2022
1 parent 90ce2e0 commit 0ee94f8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/lotus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build Lotus Firmware

on:
push:
branches:
- master
- develop
- lotus

jobs:
lotus-build:
runs-on: ubuntu-latest

container: qmkfm/qmk_cli

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install dependencies
run: pip3 install -r requirements-dev.txt

- name: Build Lotus
run: qmk compile -kb lotus -km default

# tests:
# runs-on: ubuntu-latest
#
# container: qmkfm/qmk_cli
#
# steps:
# - uses: actions/checkout@v3
# with:
# submodules: recursive
#
# - name: Install dependencies
# run: pip3 install -r requirements-dev.txt
#
# - name: Run tests
# run: make test:all

0 comments on commit 0ee94f8

Please sign in to comment.