nb2fr 0.2.0

Convert integer number to literal French text.
Documentation
# SPDX-FileCopyrightText: 2020-2026 Sébastien Helleu <flashcode@flashtux.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later

name: CI

on:
  - push
  - pull_request

env:
  CARGO_TERM_COLOR: always

jobs:

  build:

    strategy:
      matrix:
        os:
          - ubuntu-24.04
          - ubuntu-24.04-arm
          - macos-15
          - windows-2025

    runs-on: ${{ matrix.os }}

    steps:

    - uses: actions/checkout@v6

    - name: Build
      run: cargo build --verbose

    - name: Run tests
      run: cargo test --verbose