Skip to content

Fix Indicator::second() #17

Fix Indicator::second()

Fix Indicator::second() #17

Workflow file for this run

name: test-and-check
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --features default,xml --verbose
format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Run format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check