File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# This is copied from https://github.com/rust-analyzer/rust-analyzer/blob/master/.github/workflows/ci.yaml
2+ # But I added rustfmt too.
23name : CI
34on :
45 pull_request :
56 push :
67 branches :
78 - main
8- - ci-test
99
1010env :
1111 CARGO_INCREMENTAL : 0
@@ -39,11 +39,14 @@ jobs:
3939 override : true
4040 components : rustfmt, rust-src
4141
42+ - name : rustfmt
43+ run : cargo fmt --all -- --check
44+
4245 - name : Cache Dependencies
4346 uses : Swatinem/rust-cache@ce325b60658c1b38465c06cc965b79baf32c1e72
4447
4548 - name : Compile
46- run : cargo test --no-run --locked
49+ run : cargo test --no-run
4750
4851 - name : Test
4952 run : cargo test -- --nocapture --quiet
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ This crate contains a Rust API that forks `/usr/bin/skopeo` and
44talks to it via a custom API. You can use it to fetch container
55images in a streaming fashion.
66
7+ At the time of this writing, you will need a version of skopeo with
8+ https://github.com/containers/skopeo/pull/1476
9+
710# Why?
811
912First, assume one is operating on a codebase that isn't Go, but wants
You can’t perform that action at this time.
0 commit comments