Skip to content

Create docker image for the pipeline #125

Create docker image for the pipeline

Create docker image for the pipeline #125

Workflow file for this run

name: Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo & submodules
uses: actions/checkout@v3
with:
submodules: true
# - name: Build
# run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose
- name: Run tests
uses: ./.github/actions/docker
with:
script: |
rustup default stable
cargo build --verbose
cargo test --verbose