From 9c88f68b080b7c398305dfa653eb3fe0764fdd89 Mon Sep 17 00:00:00 2001 From: wfrsk Date: Wed, 14 Sep 2022 17:46:12 +0200 Subject: [PATCH] [workflow] create required directories for tests --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 835118e..2960eac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always - RUST_BACKTRACE: 1 + RUST_BACKTRACE: full jobs: build: @@ -17,6 +17,8 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Create required directories + run: mkdir ~/images - name: Build run: cargo build --verbose - name: Run tests