Skip to content

Commit

Permalink
fix: CI/CD pipepline
Browse files Browse the repository at this point in the history
  • Loading branch information
raghav-rama committed Feb 11, 2024
1 parent 8547927 commit d344aa4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"

0 comments on commit d344aa4

Please sign in to comment.