Fix locking issues with the power manager and model gauge #12
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: Compile | |
on: [push] | |
jobs: | |
compile: | |
strategy: | |
matrix: | |
device-os-version: [ '4.x', '5.x' ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Compile application | |
id: compile | |
uses: particle-iot/compile-action@v1 | |
with: | |
particle-platform-name: 'tracker' | |
device-os-version: '${{ matrix.device-os-version }}' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tracker-artifacts-${{ matrix.device-os-version }} | |
path: | | |
${{ steps.compile.outputs.firmware-path }} | |
${{ steps.compile.outputs.target-path }} |