mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 17:42:29 +01:00
b908ee2ec4
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
647 B
YAML
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@v5
|
|
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
|