Skip to content

sdfg

sdfg #24

Workflow file for this run

name: ULID Tool Build
on:
push:
branches:
- '*'
- '!main' # Exclude the main branch
paths:
- 'tools/ulid/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build ULID Tool
run: |
cd tools/ulid
cargo build --verbose
- name: Run Tests
run: |
cd tools/ulid
cargo test --verbose