d1755d52f2
* exsytrawo 1.2.0 (#1396) * bbt 0.1.0 (#1397) * prolog 1.0.0 (#1398) * prolog 1.0.0 (via `alr publish`) * Update prolog-1.0.0.toml * Move to alr 2.1 --------- Co-authored-by: Blady-Com <blady.net@orange.fr> Co-authored-by: Lionel Draghi <lionel.draghi@free.fr> Co-authored-by: Jesper Quorning <jesper.quorning@gmail.com>
36 lines
705 B
YAML
36 lines
705 B
YAML
name: Check Index
|
|
|
|
env:
|
|
ALR_VERSION: 2.1.0
|
|
|
|
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
|