sam/header/parser: Keep existing record in header on a duplicate ID e… #1144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust | |
run: rustup update stable && rustup default stable | |
- name: Install rustfmt | |
run: rustup component add rustfmt | |
- run: cargo fmt -- --check | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust | |
run: rustup update stable && rustup default stable | |
- name: Install clippy | |
run: rustup component add clippy | |
- run: cargo clippy --all-features -- --deny warnings | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust | |
run: rustup update stable && rustup default stable | |
- run: cargo test --all-features |