Skip to content

Updated changelog with new format #238

Updated changelog with new format

Updated changelog with new format #238

Workflow file for this run

name: rimage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Setup nasm πŸ§‘β€πŸ’»
uses: ilammy/setup-nasm@v1
- name: Setup rust toolchain πŸ¦€
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Test πŸ§ͺ
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Setup nasm πŸ§‘β€πŸ’»
uses: ilammy/setup-nasm@v1
- name: Setup rust toolchain πŸ¦€
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Formatting check πŸͺ„
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Clippy check πŸ”Ž
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features -- -D warnings