Skip to content

Merge pull request #5 from tux3/error_streams_strings #20

Merge pull request #5 from tux3/error_streams_strings

Merge pull request #5 from tux3/error_streams_strings #20

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build (lib)
run: cargo build --lib --no-default-features
- name: Build (bin)
run: cargo build --all
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy --all --all-targets -- -D warnings
- name: Clippy (no features)
run: cargo clippy --all --all-targets --no-default-features -- -D warnings
- name: Clippy (all features)
run: cargo clippy --all --all-targets --all-features -- -D warnings