Skip to content

Improve GHA testing. #825

Improve GHA testing.

Improve GHA testing. #825

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
schedule:
- cron: '0 3 * * 0' # Every sunday at 3am UTC.
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macos-11]
rust: [stable, beta, nightly]
exclude:
- os: windows-2019
rust: beta
- os: windows-2019
rust: nightly
- os: macos-11
rust: beta
- os: macos-11
rust: nightly
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install
run: |
rustup update
rustup default ${{ matrix.rust }}
- name: Build
run: cargo check --all-targets
continue-on-error: ${{ matrix.rust == 'nightly' }}
- name: Unit tests
run: cargo test --lib
tests:
needs: build
name: Tests
strategy:
fail-fast: false
matrix:
version: [previous-lts, lts, latest, ci]
uses: ./.github/workflows/tests.yml

Check failure on line 58 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/rust.yml (Line: 58, Col: 11): Error from called workflow EventStore/EventStoreDB-Client-Rust/.github/workflows/tests.yml@034c0597168e58f13ba8940130a9680ad965fbb3 (Line: 12, Col: 15): Unexpected value 'bool' EventStore/EventStoreDB-Client-Rust/.github/workflows/tests.yml@034c0597168e58f13ba8940130a9680ad965fbb3 (Line: 19, Col: 5): Required property is missing: runs-on
with:
version: ${{ matrix.version }}
linting:
name: Linting
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
rustup update stable
rustup component add clippy
rustup component add rustfmt
- name: Linting
run: cargo clippy --all-features -- -D warnings
- name: Formatting
run: cargo fmt -- --check