Skip to content

Commit

Permalink
Use docker run action
Browse files Browse the repository at this point in the history
  • Loading branch information
lizrabuya committed Sep 28, 2023
1 parent 0b11382 commit 071d24e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:

tests:
name: unit-test
runs-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Run unit test for the action
run: docker run --rm -v "$PWD":/plugin buildkite/plugin-tester:v4.0.0

- name: checkout base image
uses: actions/checkout@v3
- uses: addnab/docker-run-action@v3
with:
image: buildkite/plugin-tester:v4.0.0
options: --rm -v "$PWD":/plugin

0 comments on commit 071d24e

Please sign in to comment.