annotation troubleshooting. #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: update apt repos | |
run: sudo apt-get update | |
- name: install make and lua | |
run: sudo apt-get -y install make lua5.3 | |
- name: link /usr/bin/lua | |
run: sudo ln -sf /usr/bin/lua5.3 /usr/bin/lua | |
- name: Prepare modules | |
run: make config | |
- name: Run lua tests | |
run: make prepare-firmware mock_spiffs_dir test | |
- name: Run lua integration tests | |
run: make prepare-firmware mock_spiffs_dir integration-test |