diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-11 11:04:12 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-11 11:04:12 +0200 |
commit | 79e3ed5337b4927b0ede76513bfdf9f721540fa6 (patch) | |
tree | 2c4624b40b3909e7449956ffe64b3d6231e66aa9 /.github/workflows/main.yml | |
parent | 421c4886ac592ea55fb36ea10c9c8a6e3df8a91c (diff) | |
download | markdown-rs-79e3ed5337b4927b0ede76513bfdf9f721540fa6.tar.gz markdown-rs-79e3ed5337b4927b0ede76513bfdf9f721540fa6.tar.bz2 markdown-rs-79e3ed5337b4927b0ede76513bfdf9f721540fa6.zip |
Remove CI tests on rust beta
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d13126..24d61fa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,19 +3,6 @@ on: - pull_request - push jobs: - beta: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: beta - components: rustfmt, clippy - - run: cargo clippy -- -W clippy::pedantic - - run: cargo fmt --all -- --check - - run: cargo test - # - run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml - # - uses: codecov/codecov-action@v1 stable: runs-on: ubuntu-latest steps: |