Skip to content

Add cargo update to maintenance.sh for up-to-date checks #130

Add cargo update to maintenance.sh for up-to-date checks

Add cargo update to maintenance.sh for up-to-date checks #130

Workflow file for this run

name: CI
on:
push:
branches: "*"
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run audit
run: cargo install cargo-audit && cargo audit