Monoprice MP i3 Mini Build #10
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
# | |
# test-monoprice-mp-i3-mini-build.yml | |
# Do test build to catch compile errors | |
# | |
name: Monoprice MP i3 Mini CI | |
on: | |
pull_request: | |
paths-ignore: | |
- config/** | |
- data/** | |
- docs/** | |
- '**/*.md' | |
push: | |
paths-ignore: | |
- config/** | |
- data/** | |
- docs/** | |
- '**/*.md' | |
jobs: | |
test_builds: | |
name: Test Build | |
if: github.repository == 'thisiskeithb/Marlin' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Commit | |
uses: actions/checkout@v4 | |
- name: Select Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
architecture: 'x64' | |
- name: Install PlatformIO | |
run: | | |
pip install -U platformio | |
pio upgrade --dev | |
pio pkg update --global | |
- name: Build Marlin | |
run: pio run |