Skip to content

doc: Create CODEOWNERS file (#289) #298

doc: Create CODEOWNERS file (#289)

doc: Create CODEOWNERS file (#289) #298

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.2/py3/requirements.txt", "tensorflow/jobs/docker/2.14/py3/requirements.txt"]
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10' # install the python version needed
- name: Install dependencies
run: |
pip install -r ${{ matrix.path }}