Skip to content

WIP: Never pick up Strawberry Perl's pkg-config as a valid implementation #101

WIP: Never pick up Strawberry Perl's pkg-config as a valid implementation

WIP: Never pick up Strawberry Perl's pkg-config as a valid implementation #101

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: ${{ matrix.rust }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- 1.30.0
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: rustup component add rustfmt-preview
- name: cargo fmt --all -- --check if stable
run: |
if [ "${{ matrix.rust }}" = "stable" ]; then
cargo fmt --all -- --check
fi
- run: |
cargo build --verbose
- run: |
cargo test --verbose
build windows:

Check failure on line 40 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 40, Col: 3): The identifier 'build windows' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
name: windows ${{ matrix.rust }}
runs-on: windows
strategy:
fail-fast: false
matrix:
rust:
- 1.30.0
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: rustup component add rustfmt-preview
- name: cargo fmt --all -- --check if stable
run: |
if [ "${{ matrix.rust }}" = "stable" ]; then
cargo fmt --all -- --check
fi
- run: |
cargo build --verbose
- run: |
cargo test --verbose