kumiori is pulling containers #5
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: Run Tests in Docker Container | |
run-name: ${{ github.actor }} is pulling containers | |
on: | |
push: | |
branches: | |
- andres-rev-patch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 0: Checkout | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Step 1: Pull the Docker container from Docker Hub | |
- name: Pull Docker Container | |
run: docker pull kumiori3/numerix:stable | |
# Step 2: Check out the repository code within the container | |
- name: Run Tests in Docker Container | |
run: | | |
docker run --rm \ | |
-v ${{ github.workspace }}:/workspace \ | |
kumiori3/numerix:stable \ | |
sh -c "cd /workspace && ls -la" |