slugify/.github/workflows/makefile.yml
Fabio Montefuscolo a8ca0db8b0
Some checks failed
CI / Code Quality (push) Failing after 3s
CI / Test Suite (push) Failing after 2s
Release / Build - macos-latest (aarch64-apple-darwin) (push) Waiting to run
Release / Build - ubuntu-latest (x86_64-unknown-linux-gnu) (push) Failing after 3s
feat: github actions
2026-04-19 11:22:59 +02:00

33 lines
613 B
YAML

name: Quick Build (Makefile)
on:
workflow_dispatch: # Manual trigger only
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Quick Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Prepare
run: make prepare
- name: Run tests
run: make test
- name: Build
run: make build
- name: Display binary info
run: |
ls -lh target/release/slugify
file target/release/slugify