use latest in the GAN as well #124
This file contains hidden or 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: Pytorch GAN lab test | |
| on: [push] | |
| jobs: | |
| test-03-GAN: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' # Cache the installed dependencies | |
| - name: Install the dependencies | |
| working-directory: ./LabsSolutions/03-pytorch-gan | |
| run: python -m pip install -r requirements.txt | |
| - name: Test implementation | |
| working-directory: ./LabsSolutions/03-pytorch-gan | |
| run: python test_implementation.py | |