Skip to content

fix: sed Version in rpm spec, drop --define override #10

fix: sed Version in rpm spec, drop --define override

fix: sed Version in rpm spec, drop --define override #10

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: fmt
run: cargo fmt -- --check
- name: clippy
run: cargo clippy --all-targets -- -D warnings -W clippy::pedantic -W clippy::nursery
- name: test
run: cargo test
- name: build
run: cargo build --release