diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1bbb39d..c6344f6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,7 +12,9 @@ env: jobs: build: runs-on: ubuntu-latest - + services: + testing-image: + image: kennethreitz/httpbin steps: - uses: actions/checkout@v4 - name: Set up linker @@ -32,3 +34,9 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Push to Docker Hub run: docker push 860x9/rust_nuggets:latest + + job-with-no-dependencies: + runs-on: ubuntu-latest + steps: + - name: Job with no dependencies + run: echo "This job has no dependencies"