Skip to content

handle offset values other than zero in SYMBOL_LINK #7

handle offset values other than zero in SYMBOL_LINK

handle offset values other than zero in SYMBOL_LINK #7

Workflow file for this run

name: Rust build & test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release
- name: Run tests
env:
RUST_BACKTRACE: 1
run: cargo test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
#run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo clippy --all-features -- -D warnings