Skip to content

Update requirements.txt #208

Update requirements.txt

Update requirements.txt #208

Workflow file for this run

#
# Flowmotion
# CI/CD Pipeline
#
name: Flowmotion CI/CD
on:
push: {}
jobs:
pipeline:
strategy:
fail-fast: false
matrix:
target: [lint, test]
name: "${{ matrix.target }} Pipeline"
defaults:
run:
working-directory: pipeline
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10.13"
# cache pip dependencies
cache: "pip"
- name: Install Pip dependencies
run: pip install -r requirements.txt
- name: "${{ matrix.target }} Pipeline"
run: "make ${{ matrix.target }}"