gnu-echo-rs/.github/workflows/echo-rs-ci.yml

27 lines
578 B
YAML
Raw Normal View History

name: gnu-echo-rs CI
2023-07-02 03:28:46 +00:00
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up gnu-echo-rs
2023-07-02 03:28:46 +00:00
uses: actions/checkout@v2
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: test
run: python3 gnu_echo_tests/test.py -e /bin/echo -b target/debug/gnu-echo-rs
2023-07-02 03:28:46 +00:00
- name: Clippy
run: cargo clippy --verbose -- -D warnings
- name: Audit
run: cargo audit