Skip to content

Add min size and min alignment properties to AccessTypes #22

Add min size and min alignment properties to AccessTypes

Add min size and min alignment properties to AccessTypes #22

name: Build and upload Rust crate
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
env:
RUSTFLAGS: "-D warnings"
# RUSTDOCFLAGS: "-D warnings"
jobs:
check_fmt:
name: Check format
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check format
run: cargo fmt --check
check_clippy:
name: Check clippy - no features
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Setup clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy --all-targets
check_clippy_all_features:
name: Check clippy - features- all
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Setup clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features
check_doc:
name: Check doc
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run doc
run: cargo doc
run_tests:
name: Run tests
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tests
run: cargo test --workspace
test_bin_disasmdis:
name: Run tests
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tests
run: cargo run -p rab-disasmdis 12345678
msrv:
name: Check MSRV is correct
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup MSRV checker
uses: taiki-e/install-action@cargo-hack
- name: Run MSRV checker
run: cargo hack check --rust-version --workspace --all-targets --ignore-private
msrv_all_features:
name: Check MSRV is correct for all features
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup MSRV checker
uses: taiki-e/install-action@cargo-hack
- name: Run MSRV checker
run: cargo hack check --rust-version --workspace --all-targets --ignore-private --all-features
build_rust:
name: Build Rust stuff and run Rust tests
runs-on: ubuntu-20.04
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build Rust package
run: cargo build --release --workspace
- name: Publish dry run
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/')
run: cargo publish -p rabbitizer --dry-run
- name: Upload crate
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: cargo publish -p rabbitizer --token ${{ secrets.CARGO_REGISTRY_TOKEN }}