Skip to content

Merge branch 'develop' of https://github.com/seekrs/ft-rs into develop #3

Merge branch 'develop' of https://github.com/seekrs/ft-rs into develop

Merge branch 'develop' of https://github.com/seekrs/ft-rs into develop #3

Workflow file for this run

name: Build (debug)
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check & Clippy
run: cargo check --verbose && cargo clippy --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose