diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2021-01-11 21:26:13 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2021-01-11 21:26:13 +0100 |
commit | a5eabb805bc585214d4d5bf716843044ea1241c1 (patch) | |
tree | 0a8a751e67a4aac3b41c0d5f21fe1be2f96e957b | |
parent | f1c574f33d99822924e44b3b941ea0fc79152747 (diff) | |
download | ads1x1x-async-a5eabb805bc585214d4d5bf716843044ea1241c1.tar.gz ads1x1x-async-a5eabb805bc585214d4d5bf716843044ea1241c1.tar.xz ads1x1x-async-a5eabb805bc585214d4d5bf716843044ea1241c1.zip |
Do not run CI tests on MSRV version as this was broken by a dependency
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7832528..cfd9392 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -on: +on: push: pull_request: schedule: @@ -91,13 +91,13 @@ jobs: uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - + test: name: Tests runs-on: ubuntu-latest strategy: matrix: - rust: [stable, beta, nightly, 1.31.0] + rust: [stable, beta, nightly] TARGET: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl] include: - rust: nightly |