Skip to content

Update Unicode to version 15.1.0, bump to 0.5.6 #65

Update Unicode to version 15.1.0, bump to 0.5.6

Update Unicode to version 15.1.0, bump to 0.5.6 #65

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- beta
- nightly
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test
- name: Run benchmarks
run: cargo bench --features bench
if: startsWith(matrix.rust, 'nightly')