Fix compilation on SensESP 3.1 #51
Workflow file for this run
This file contains hidden or 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: OneWire Temperature Automatic Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| example: | |
| - examples/onewire_temperature/onewire_temperature_example.cpp | |
| target_device: | |
| - esp32dev | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v3 | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade platformio | |
| - name: Run PlatformIO | |
| run: ci/run-ci.sh | |
| env: | |
| PLATFORMIO_CI_SRC: ${{ matrix.example }} | |
| CI_TARGET_DEVICE: ${{ matrix.target_device }} |