Skip to content

Commit 2e0d919

Browse files
committed
bugfix, matchers not copied
1 parent 5cf26ad commit 2e0d919

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ inputs:
7878

7979
runs:
8080
using: "composite"
81-
steps:
81+
steps:
82+
- run: |
83+
ls -l
84+
cp matchers/*.json /
8285
- run: |
8386
$CONDA/bin/conda --version
8487
$CONDA/bin/conda install python=${{ inputs.conda-python-version }}

entrypoint.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ echo extra-isort-options: $15
4141
echo extra-vulture-options: $16
4242
echo extra-pydocstyle-options: $17
4343

44-
for matcher in ./matchers/*.json
44+
ls -l /
45+
ls -l .
46+
47+
for matcher in /*.json
4548
do
4649
echo adding matcher $matcher
4750
echo "::add-matcher::${matcher}"

0 commit comments

Comments
 (0)