-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI docker layer caching and CI step names
- Loading branch information
1 parent
6e45a33
commit 54cc5e4
Showing
1 changed file
with
6 additions
and
2 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 |
---|---|---|
|
@@ -11,7 +11,8 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-python@v1 | ||
- uses: pre-commit/[email protected] | ||
- name: Run pre-commit checks | ||
uses: pre-commit/[email protected] | ||
- name: Build and push Docker images | ||
uses: docker/build-push-action@v1 | ||
with: | ||
|
@@ -28,7 +29,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: > | ||
- name: Pull Docker layer cache | ||
uses: satackey/[email protected] | ||
- name: Run tests | ||
run: > | ||
sudo | ||
K8S_EMUL_IMAGE=kyryloshpytsyaprismai/k8s-emul:sha-${GITHUB_SHA::7} | ||
./run-tests |