actions: fix test-importer workflow (#410)

* actions: fix test-importer workflow

* update gitignore
This commit is contained in:
Federico Kunze
2020-07-24 14:54:25 -04:00
committed by GitHub
parent cc6b5d04f2
commit 8789a04998
4 changed files with 23 additions and 18 deletions
+17 -17
View File
@@ -193,20 +193,20 @@ jobs:
file: ./coverage.txt
fail_ci_if_error: true
if: "env.GIT_DIFF != ''"
# TODO: remove tmp dir to fix this
# test-importer:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# steps:
# - uses: actions/checkout@v2
# - uses: technote-space/get-diff-action@v1
# id: git_diff
# with:
# SUFFIX_FILTER: |
# .go
# .mod
# .sum
# - name: importer-test
# run: |
# make test-import
# if: "env.GIT_DIFF != ''"
test-importer:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1
id: git_diff
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- name: test-importer
run: |
make test-import
if: "env.GIT_DIFF != ''"