add gh-action for testing docker pull #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |