Skip to content

dcgans training notebook #2

dcgans training notebook

dcgans training notebook #2

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r requirements.txt # Adjust this based on your project structure
- name: Run tests
run: python -m unittest discover tests # Adjust this based on your test discovery method