Skip to content

Improve check for whether a method returns Self #180

Improve check for whether a method returns Self

Improve check for whether a method returns Self #180

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: build
run: cargo build --verbose
- name: test
run: cargo test --verbose
- name: test --release
run: cargo test --release --verbose