wordpress/.github/workflows/tests.yml
dependabot[bot] e1730014e6
Bump docker/build-push-action from 5 to 6
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v5...v6)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-17 22:38:57 +00:00

35 lines
647 B
YAML

name: Run tests
on:
push:
branches:
- "master"
jobs:
tests:
runs-on: ubuntu-latest
steps:
-
name: "Checkout"
uses: actions/checkout@v4
-
name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3
-
name: "Build tests-util image"
uses: docker/build-push-action@v6
id: build
with:
context: build/tests-util/
cache-from: type=gha,scope=tests
cache-to: type=gha,scope=tests,mode=max
load: true
tags: localhost/tests-util:latest
-
name: "Run tests"
run: bin/tests