forked from camallo/dkregistry-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add private tests which require auth to merge queue (#3)
- Loading branch information
1 parent
08693eb
commit 893af8c
Showing
2 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Continuous integration - private registry | ||
|
||
on: | ||
pull_request: | ||
merge_group: | ||
|
||
jobs: | ||
test-net-private: | ||
name: Test Suite (network-enabled tests) | ||
runs-on: ubuntu-latest | ||
environment: main | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- nightly | ||
- "1.70.0" # MSRV | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
|
||
# - name: Run cargo test (test-net-private) | ||
# run: cargo test --features test-net,test-net-private | ||
# env: | ||
# DOCKER_REGISTRY_QUAY_USER: ${{ secrets.DOCKER_REGISTRY_QUAY_USER }} | ||
# DOCKER_REGISTRY_QUAY_PASSWD: ${{ secrets.DOCKER_REGISTRY_QUAY_PASSWD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters