Skip to content

infra: bump the dev-dependencies group with 1 update #7

infra: bump the dev-dependencies group with 1 update

infra: bump the dev-dependencies group with 1 update #7

Workflow file for this run

name: Build requirements
on:
push:
branches:
- main
pull_request:
branches:
- main
- feature/**
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
path: ["base/jobs/docker/1.0/py3/requirements.txt", "pytorch/jobs/docker/2.0/py3/requirements.txt", "tensorflow/jobs/docker/2.13/py3/requirements.txt"]
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed
- name: Install dependencies
run: |
pip install -r ${{ matrix.path }}