Skip to content

UPD backlog

UPD backlog #15

Workflow file for this run

name: Rust
on:
workflow_dispatch:
push:
branches: [ "next" ]
pull_request:
branches: [ "next" ]
env:
CARGO_TERM_COLOR: always
jobs:
check_and_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose