Skip to content

fix: commenting out pushcontainer github workflow #5

fix: commenting out pushcontainer github workflow

fix: commenting out pushcontainer github workflow #5

Workflow file for this run

name: Run test using container
on:
push:
branches:
- test/maccGradedCase
jobs:
run-tests:
name: Run container and execute script
runs-on: ubuntu-latest
steps:
# Checkout repo
- name: Checkout code
uses: actions/checkout@v4
# build container based on local dockerfile
- name: Build Docker image
run: |
docker build -t autoig-image:latest ${{ github.workspace }}
# try to container with volume
# binding to root directory
- name: Run container and execute script
run: |
docker run --rm \
--volume ${{ github.workspace }}:/AutoIG \
autoig-image:latest \
bash -c "
cd /AutoIG/scripts &&
. bin/set-path.sh &&
AUTOIG=\$(pwd) &&
./check.sh"