Skip to content

Commit

Permalink
add gh-action for testing docker pull
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Oct 3, 2024
1 parent 5639632 commit ffbbc8f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docker-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull Docker Image

on:
push:
branches:
- main
- anmol/docker-test

jobs:
docker-pull:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Pull public Docker image
run: docker pull ghcr.io/cosmology-tech/jsd:latest

0 comments on commit ffbbc8f

Please sign in to comment.