File tree Expand file tree Collapse file tree 3 files changed +82
-71
lines changed
Expand file tree Collapse file tree 3 files changed +82
-71
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,13 @@ jobs:
8484 needs : fmt
8585 strategy :
8686 matrix :
87- os : [ubuntu-latest, macos-latest]
87+ os :
88+ - ubuntu-latest
89+ - macos-latest
8890 runs-on : ${{ matrix.os }}
8991 steps :
9092 - uses : actions/checkout@v4
93+
9194 - uses : dtolnay/rust-toolchain@stable
9295
9396 - name : build
@@ -172,3 +175,15 @@ jobs:
172175 - uses : coverallsapp/github-action@v2
173176 with :
174177 parallel-finished : true
178+
179+ test-minimal-container :
180+ needs : fmt
181+ runs-on : ubuntu-latest
182+ container : debian:buster-slim
183+ steps :
184+ - uses : actions/checkout@v4
185+ - run : apt-get update && apt-get install -y curl make gcc perl
186+ - uses : dtolnay/rust-toolchain@stable
187+ - run : apt-get remove curl ca-certificates openssl --yes
188+ - run : cargo build
189+ - run : ./target/debug/pkgx +git
You can’t perform that action at this time.
0 commit comments