We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90d23f5 commit 0f67dc2Copy full SHA for 0f67dc2
tasks/dbt-apply/action.yml
@@ -32,6 +32,16 @@ inputs:
32
runs:
33
using: "composite"
34
steps:
35
+ - name: Clean target
36
+ shell: pwsh
37
+ run: |
38
+ if(Test-Path -Path ".\target\partial_parse.msgpack" -PathType Leaf) {
39
+ Remove-Item -Path ".\target\partial_parse.msgpack" -Force
40
+ }
41
+ if(Test-Path -Path ".\target\graph.gpickle" -PathType Leaf) {
42
+ Remove-Item -Path ".\target\graph.gpickle" -Force
43
44
+
45
- name: Run DBT without Unit-tets
46
if: inputs.target != 'unit-test'
47
shell: pwsh
0 commit comments