UPDATE structure: remove unused files and refactor tests #1
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_job: | |
runs-on: ubuntu-latest | |
container: | |
image: pytorch/pytorch:latest # docker://{docker-image-name}:{tag} | |
options: --volume ${{ github.workspace }}:${{ github.workspace }} | |
steps: | |
- name: Run commands in container | |
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 |