Skip to content

Version 4.0.0

Version 4.0.0 #427

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
tags:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
name: Test
runs-on: ${{ matrix.platform }}
env:
RUST_I18N_DEBUG: 0
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