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 9feac40
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 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,9 @@ 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
run: |
docker buildx bake --file ./docker/test/docker-compose.yml --file ./.github/workflows/docker-compose-cache.json --set *.context=.
# For docker layer caching also see this article [1]
# - name: Build docker images
Expand Down

0 comments on commit 9feac40

Please sign in to comment.