Update action #13
Workflow file for this run
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: Test workflows based on torch | |
on: [push] | |
jobs: | |
my_job1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check workspace | |
shell: bash -l {0} | |
run: ls -la ${{ github.workspace }} | |
my_job: | |
runs-on: ubuntu-latest | |
container: | |
image: python:3.9 #pytorch/pytorch:latest # docker://{docker-image-name}:{tag} | |
volumes: | |
- /home/runner/work/itwinai/itwinai/use-cases:/repo | |
steps: | |
- name: Cache Docker image layers | |
uses: actions/cache@v2 | |
with: | |
path: /var/lib/docker/image | |
key: ${{ runner.os }}-docker-${{ hashFiles('**/Dockerfile') }} | |
- name: Run commands in container | |
run: ls -la /repo | |
# run: | | |
# # Now the repository code is available inside the Docker container | |
# # You can use it as needed | |
# cd ${{ github.workspace }} && | |
# # Run your commands here | |
# ls -la . && | |
# ls -la ${{ github.workspace }} && | |
# ls -la ${{ github.workspace }}/.. && | |
# pwd && | |
# echo ${{ github.workspace }} && | |
# pip install . |