Skip to content

Merge branch 'main' into fix/fix-the-presentation-submission-in-the-o… #123

Merge branch 'main' into fix/fix-the-presentation-submission-in-the-o…

Merge branch 'main' into fix/fix-the-presentation-submission-in-the-o… #123

Workflow file for this run

name: ci
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Fmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy