Skip to content

Commit de2aeb1

Browse files
committed
ci: add missing new action pre-install-py-packages.yml
1 parent 86a9870 commit de2aeb1

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Install python packages
2+
3+
description: "Action installing the Idefix python packages before running the tests."
4+
5+
inputs: {}
6+
7+
runs:
8+
using: "composite"
9+
pre: []
10+
steps:
11+
- name: Create venv
12+
run: |
13+
python3 -m venv .venv
14+
source .venv/bin/activate
15+
python3 -m pip install -r ./test/python_requirements.txt
16+
post: []

0 commit comments

Comments
 (0)