2023-07-22 14:03:00 +00:00
|
|
|
name: CITLVTool
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
schedule:
|
|
|
|
- cron: "20 7 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_tlv_tool:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-07-22 17:54:40 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-07-22 14:03:00 +00:00
|
|
|
|
|
|
|
- name: Fmt
|
2023-07-22 17:54:40 +00:00
|
|
|
run: cargo fmt -- --check
|
|
|
|
working-directory: tools/tlv
|
2023-07-22 14:03:00 +00:00
|
|
|
|
|
|
|
- name: Clippy
|
2023-07-22 17:54:40 +00:00
|
|
|
run: cargo clippy --no-deps -- -Dwarnings
|
|
|
|
working-directory: tools/tlv
|
2023-07-22 14:03:00 +00:00
|
|
|
|
|
|
|
- name: Build
|
2023-07-22 17:54:40 +00:00
|
|
|
run: cargo build
|
|
|
|
working-directory: tools/tlv
|
2023-07-22 14:03:00 +00:00
|
|
|
|
|
|
|
- name: Archive artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: tlv
|
|
|
|
path: tools/tlv/target/debug/tlv
|