diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7d0d549..d785224 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Create and publish a Docker image +name: Build and Push Docker on: push: @@ -16,7 +16,7 @@ env: # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: - build-and-push-image: + build-and-push-images: runs-on: ubuntu-latest # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0b1af9..90a8904 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,9 @@ -name: Test +name: Run Tests on: [push] jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4