Skip to content

Commit f8815b2

Browse files
authored
Merge pull request #1 from cgwalters/test-pr
README.md: Link to skopeo PR
2 parents 1cc9d94 + c9d2cac commit f8815b2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This is copied from https://github.com/rust-analyzer/rust-analyzer/blob/master/.github/workflows/ci.yaml
2+
# But I added rustfmt too.
23
name: CI
34
on:
45
pull_request:
56
push:
67
branches:
78
- main
8-
- ci-test
99

1010
env:
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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ This crate contains a Rust API that forks `/usr/bin/skopeo` and
44
talks to it via a custom API. You can use it to fetch container
55
images 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

912
First, assume one is operating on a codebase that isn't Go, but wants

0 commit comments

Comments
 (0)