Skip to content

Commit

Permalink
Document ci-unit-tests-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 authored Nov 17, 2023
1 parent cdd53a9 commit 7fec811
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci-unit-tests-docker.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Google Cloud CI that runs when Rust code and dependencies are modified in a PR from the ZcashFoundation/zebra repository.
name: Docker Unit Tests

# Ensures that only one workflow task will run at a time. Previous builds, if
Expand All @@ -21,7 +22,7 @@ on:
default: false

pull_request:
# Skip branches from external repositories, let them pass, and then Mergify will check them
# Skip PRs from external repositories, let them pass, and then Mergify will check them
branches:
# Include all branches
- '**'
Expand All @@ -30,6 +31,7 @@ on:
# But include mergify and dependabot
- 'mergify/**'
- 'dependabot/**'
# Skip PRs where Rust code and dependencies aren't modified.
paths:
# code and tests
- '**/*.rs'
Expand All @@ -53,6 +55,7 @@ on:
push:
branches:
- main
# Skip main branch merges where Rust code and dependencies aren't modified.
paths:
# code and tests
- '**/*.rs'
Expand Down Expand Up @@ -84,6 +87,9 @@ env:
COLORBT_SHOW_HIDDEN: ${{ vars.COLORBT_SHOW_HIDDEN }}
CARGO_INCREMENTAL: ${{ vars.CARGO_INCREMENTAL }}

# IMPORTANT
#
# These job names must be kept in sync with the `.patch.yml` and `.patch-external.yml` files.
jobs:
# Build the docker image used by the tests.
#
Expand Down

0 comments on commit 7fec811

Please sign in to comment.