Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

fixed issue where orders where not correctly marked as completed #56

fixed issue where orders where not correctly marked as completed

fixed issue where orders where not correctly marked as completed #56

Workflow file for this run

name: Build and Test
on:
push:
branches:
- dev
pull_request:
- dev
env:
SQLX_OFFLINE: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Build and test code
run: |
cargo build --verbose
cargo test --verbose