Skip to content

kumiori is pulling containers #5

kumiori is pulling containers

kumiori is pulling containers #5

Workflow file for this run

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"