Skip to content

test: fix renamed next/prev methods in tests #127

test: fix renamed next/prev methods in tests

test: fix renamed next/prev methods in tests #127

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings