cf27f32b50
* Replace CE with latest FSF from Alire Also remove extra installations that are now automatically performed by the setup-alire action. * Remove now-redundant workflow cases
35 lines
771 B
YAML
35 lines
771 B
YAML
name: Check PR
|
|
on: pull_request
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: alire-project/check-author@master
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
- name: Set up stable `alr`
|
|
if: contains(github.base_ref, 'stable-')
|
|
uses: alire-project/setup-alire@v2
|
|
with:
|
|
version: 1.2.2
|
|
|
|
- name: Set up devel `alr`
|
|
if: contains(github.base_ref, 'devel-')
|
|
uses: alire-project/setup-alire@v2
|
|
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
|