[workflow] create required directories for tests

This commit is contained in:
wfrsk 2022-09-14 17:46:12 +02:00 committed by GitHub
parent 669899425d
commit 9c88f68b08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1 RUST_BACKTRACE: full
jobs: jobs:
build: build:
@ -17,6 +17,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Create required directories
run: mkdir ~/images
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests