Skip to content

Refactor app specs using with_prefixed_args #72

Refactor app specs using with_prefixed_args

Refactor app specs using with_prefixed_args #72

Workflow file for this run

name: Build
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
docker-tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run Docker tests
run: cargo test --verbose -F docker-tests
# run: cargo test --verbose -F docker-tests -- --test-threads 1