From c36627e727fd32a670ba4d312d82ebe88ffd98f7 Mon Sep 17 00:00:00 2001 From: xFrednet Date: Wed, 29 Nov 2023 23:42:26 +0100 Subject: [PATCH] TEST --- .github/workflows/rust.yml | 14 +++++++++++++- README.md | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8992ac8..a12e5b7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,19 @@ env: jobs: rust-test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }}-latest + + strategy: + fail-fast: false + matrix: + os: + - windows-2019 + - windows-2022 + - ubuntu-20.04 + - ubuntu-22.04 + - macos-13 + - macos-12 + - macos-11 steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index cbc24fe..0a7d2b9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ marker_lints = { path = './marker_lints' } # An external lint crate via git marker_lints = { git = "https://github.com/rust-marker/marker" } # An external lint crate from a registry -marker_lints = "0.1.1" +marker_lints = "*" ``` You can take a look at [cargo_marker] for more options.