File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,15 +10,19 @@ runs:
1010 # `cache-dependency-path` seems to need to be within the current directory. Use a temporary directory
1111 #
1212 tempdir=$(mktemp --directory --tmpdir=. --suffix=-srcomp-validate-action)
13- cp ${{ github.action_path }}/requirements.txt $tempdir/requirements.txt
13+ cp ${{ github.action_path }}/** requirements.txt $tempdir
1414 echo "::set-output name=directory::${tempdir}"
1515
1616 - name : Set up Python
1717 uses : actions/setup-python@v3
1818 with :
1919 python-version : ' 3.10'
2020 cache : pip
21- cache-dependency-path : ${{ steps.copy-requirements.outputs.directory }}/requirements.txt
21+ cache-dependency-path : ${{ steps.copy-requirements.outputs.directory }}/**requirements.txt
22+
23+ - name : Install Test Dependencies
24+ shell : bash
25+ run : pip install -U -r ${{ steps.copy-requirements.outputs.directory }}/test-requirements.txt
2226
2327 - name : Run Scoring tests
2428 shell : bash
Original file line number Diff line number Diff line change 1+ PyYAML>5<6
You can’t perform that action at this time.
0 commit comments