Skip to content

make SortMethod Copy #36

make SortMethod Copy

make SortMethod Copy #36

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: test
env:
RUST_BACKTRACE: 1
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build fre
run: cargo build --verbose --all
- name: Run tests
run: cargo test --verbose --all
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: Check formatting
run: |
cargo fmt -- --check