diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e502937..043a08f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,3 +41,12 @@ jobs: run: taplo lint - name: taplo fmt run: taplo fmt --check --diff + + msrv: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: taiki-e/install-action@cargo-hack + - uses: Swatinem/rust-cache@v2 + - name: check with all-features + run: cargo hack --rust-version --no-private --no-dev-deps check --all-features diff --git a/Cargo.toml b/Cargo.toml index bdff566..f0ac947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ documentation = "https://docs.rs/graphql-parser" version = "0.4.1" authors = ["Paul Colomiets "] edition = "2018" +rust-version = "1.61" [dependencies] combine = "4.6.6"