Skip to content

Merge pull request #65 from UnBCIC-TP2/develop-Rafael #136

Merge pull request #65 from UnBCIC-TP2/develop-Rafael

Merge pull request #65 from UnBCIC-TP2/develop-Rafael #136

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check for Compilation Errors
run: cargo check --verbose
- name: Check Code Formatting
run: cargo fmt -- --check
- name: Run tests
run: cargo test --verbose