Skip to content

Commit

Permalink
testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
d2f4d131d9eac6cc27e3d6245ab1476b committed Mar 25, 2024
1 parent a035326 commit 488987b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pull-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Tests in Docker Container

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
# 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"

0 comments on commit 488987b

Please sign in to comment.