Skip to content

Introduced the minify_key feature for i18n! and added support for format specifiers in t! #284

Introduced the minify_key feature for i18n! and added support for format specifiers in t!

Introduced the minify_key feature for i18n! and added support for format specifiers in t! #284

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
name: Test
runs-on: ${{ matrix.platform }}
env:
RUST_I18N_DEBUG: 1
steps:
- uses: actions/checkout@v3
- name: Setup | Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ubuntu-test-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test
run: make test