All working #100
Workflow file for this run
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python Wheel | |
run: pip install wheel | |
- name: Install PlatformIO Core | |
run: pip install -U platformio | |
- name: Copy generic turntable config over | |
run: cp config.example.h config.h | |
- name: Compile Turntable-EX (turntable mode) | |
run: python -m platformio run | |
- name: Copy generic traverser config over | |
run: cp config.traverser.h config.h | |
- name: Compile Turntable-EX (traverser mode) | |
run: python -m platformio run |