Skip to content

fix: docker-compose.yml #1207

fix: docker-compose.yml

fix: docker-compose.yml #1207

Workflow file for this run

name: CI-Calc
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Cargo test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1.0.7
with:
profile: minimal
toolchain: stable
- name: Rust Cache
uses: Swatinem/rust-cache@578b235f6e5f613f7727f1c17bd3305b4d4d4e1f # v2.6.1
- name: Cargo test
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --manifest-path=calc/Cargo.toml