Skip to content

import fixes

import fixes #168

Workflow file for this run

on:
# Run only when pushing to main branch, and making PRs
push:
branches:
- main
- rewrite
pull_request:
name: CI
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install cargo nextest
uses: taiki-e/install-action@nextest
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Test with latest nextest release
uses: actions-rs/cargo@v1
env:
CARGO_TERM_COLOR: always
with:
command: nextest
args: run --all-features --profile ci