We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f09b5a commit 7902b65Copy full SHA for 7902b65
.github/workflows/validate.yml
@@ -31,4 +31,28 @@ jobs:
31
flake8 . --count --show-source --statistics
32
- name: Run tests
33
run: |
34
- pytest --ignore=samples-v2
+ pytest --ignore=samples-v2
35
+
36
+ test-samples:
37
+ strategy:
38
+ matrix:
39
+ app_name: [blueprint, fan_in_fan_out, function_chaining]
40
+ runs-on: ubuntu-latest
41
+ defaults:
42
+ run:
43
+ working-directory: ./samples-v2/${{ matrix.app_name }}
44
+ steps:
45
+ - name: Checkout repository
46
+ uses: actions/checkout@v2
47
48
+ - name: Set up Python
49
+ uses: actions/setup-python@v2
50
+ with:
51
+ python-version: 3.9
52
+ - name: Install dependencies
53
+ run: |
54
+ python -m pip install --upgrade pip
55
+ pip install -r requirements.txt
56
+ - name: Run tests
57
58
+ pytest
0 commit comments