Skip to content

Commit

Permalink
Fix paths to files and rename to Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Splines committed Jan 10, 2024
1 parent 68c0122 commit 63544f8
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Testing

on:
push:
Expand All @@ -10,10 +10,16 @@ on:
types: [opened, reopened, synchronize, ready_for_review]

jobs:
unit-test-job:
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

Expand All @@ -24,13 +30,10 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive

- name: Build docker images
run: docker buildx bake --file docker/test/docker-compose.yml --file .github/workflows/docker-compose-cache.json
working-directory: docker/test
run: |
docker buildx bake --file ./docker-compose.yml --file ./../../.github/workflows/docker-compose-cache.json
# For docker layer caching also see this article [1]
# - name: Build docker images
Expand Down

0 comments on commit 63544f8

Please sign in to comment.