light_blackpill_stm32f401 0.2.0 #885
Workflow file for this run
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: Check Index | |
env: | |
ALR_VERSION: 2.0.2 | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up stable `alr` | |
if: contains(github.base_ref, 'stable-') | |
uses: alire-project/setup-alire@v4 | |
with: | |
version: ${{env.ALR_VERSION}} | |
- name: Set up devel `alr` | |
if: contains(github.base_ref, 'devel-') | |
uses: alire-project/setup-alire@v4 | |
with: | |
branch: master | |
- run: alr index --list | |
- run: alr index --add=. --name=local_index | |
# Check index contents for unknown config variables | |
- run: alr index --check | |
- run: alr index --update-all | |
- run: alr search --crates |