allow cardSize() for backward compatible with v1 #102
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: Build | |
| on: [pull_request, push, repository_dispatch] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arduino-platform: | |
| - 'feather_esp32s2' | |
| - 'feather_esp32s3' | |
| - 'feather_rp2040' | |
| - 'metro_rp2040' | |
| - 'metro_m0' | |
| - 'metro_m4' | |
| - 'nrf52840' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Checkout adafruit/ci-arduino | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: adafruit/ci-arduino | |
| path: ci | |
| - name: pre-install | |
| run: bash ci/actions_install.sh | |
| - name: Install Libraries for building examples | |
| run: arduino-cli lib install RTClib SD | |
| - name: test platforms | |
| run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} |