enabled use of fixed EIM version #61
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: Test ESP-IDF Installation | |
| on: | |
| push: | |
| branches: [v1] | |
| pull_request: | |
| branches: [v1] | |
| schedule: | |
| - cron: '20 4 * * *' | |
| jobs: | |
| test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, macos-13, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ESP-IDF | |
| uses: ./ | |
| - name: Verify Installation | |
| run: | | |
| idf.py --version | |
| fixed-version-test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, macos-13, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ESP-IDF | |
| uses: ./ | |
| with: | |
| eim-version: "v0.2.6" | |
| - name: Verify Installation | |
| run: | | |
| idf.py --version |