Skip to content

Commit e289841

Browse files
authored
Merge pull request #79 from sile/remove-coveralls
Remove outdated CI tooling and coverage tracking
2 parents 80474a2 + 046b736 commit e289841

File tree

6 files changed

+13
-84
lines changed

6 files changed

+13
-84
lines changed

.github/actions-rs/grcov.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
2-
31
name: CI
42

53
on: [push, pull_request]
@@ -17,11 +15,9 @@ jobs:
1715
uses: actions/checkout@v1
1816

1917
- name: Install ${{ matrix.toolchain }} toolchain
20-
uses: actions-rs/toolchain@v1
21-
with:
22-
profile: minimal
23-
toolchain: ${{ matrix.toolchain }}
24-
override: true
18+
run: |
19+
rustup update ${{ matrix.toolchain }}
20+
rustup default ${{ matrix.toolchain }}
2521
2622
- name: Run cargo check
2723
uses: actions-rs/cargo@v1
@@ -37,11 +33,9 @@ jobs:
3733
uses: actions/checkout@v1
3834

3935
- name: Install nightly toolchain
40-
uses: actions-rs/toolchain@v1
41-
with:
42-
profile: minimal
43-
toolchain: nightly
44-
override: true
36+
run: |
37+
rustup update nightly
38+
rustup default nightly
4539
4640
- name: Install cargo no-std-check
4741
uses: actions-rs/cargo@v1
@@ -75,11 +69,9 @@ jobs:
7569
uses: actions/checkout@v1
7670

7771
- name: Install ${{ matrix.toolchain }} toolchain
78-
uses: actions-rs/toolchain@v1
79-
with:
80-
profile: minimal
81-
toolchain: ${{ matrix.toolchain }}
82-
override: true
72+
run: |
73+
rustup update ${{ matrix.toolchain }}
74+
rustup default ${{ matrix.toolchain }}
8375
8476
- name: Run cargo test
8577
uses: actions-rs/cargo@v1
@@ -99,12 +91,10 @@ jobs:
9991
uses: actions/checkout@v1
10092

10193
- name: Install ${{ matrix.toolchain }} toolchain
102-
uses: actions-rs/toolchain@v1
103-
with:
104-
profile: minimal
105-
toolchain: ${{ matrix.toolchain }}
106-
override: true
107-
components: rustfmt, clippy
94+
run: |
95+
rustup update ${{ matrix.toolchain }}
96+
rustup default ${{ matrix.toolchain }}
97+
rustup component add rustfmt clippy
10898
10999
- name: Run cargo fmt
110100
uses: actions-rs/cargo@v1

.github/workflows/coverage.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ categories = ["compression", "no-std"]
1111
license = "MIT"
1212
edition = "2021"
1313

14-
[badges]
15-
coveralls = {repository = "sile/libflate"}
16-
1714
[dependencies]
1815
adler32 = { version = "1", default-features = false }
1916
crc32fast = { version = "1.1.1", default-features = false }

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ libflate
44
[![libflate](https://img.shields.io/crates/v/libflate.svg)](https://crates.io/crates/libflate)
55
[![Documentation](https://docs.rs/libflate/badge.svg)](https://docs.rs/libflate)
66
[![Actions Status](https://github.com/sile/libflate/workflows/CI/badge.svg)](https://github.com/sile/libflate/actions)
7-
[![Coverage Status](https://coveralls.io/repos/github/sile/libflate/badge.svg?branch=master)](https://coveralls.io/github/sile/libflate?branch=master)
87
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
98

109
A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP).

libflate_lz77/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ keywords = ["lz77"]
1111
categories = ["compression"]
1212
license = "MIT"
1313

14-
[badges]
15-
coveralls = {repository = "sile/libflate"}
16-
1714
[dependencies]
1815
rle-decode-fast = "1.0.0"
1916
core2 = { version = "0.4", default-features = false, features = ["alloc"] }

0 commit comments

Comments
 (0)