Skip to content

Stylegan implementation #48

Stylegan implementation

Stylegan implementation #48

name: Install across python versions
on:
push:
branches: [ main ]
pull_request: {}
jobs:
pyversion_install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# all good if installation finishes
python -m pip install -e .