Skip to content

Use updated textrules API with TextRulesEvent #4

Use updated textrules API with TextRulesEvent

Use updated textrules API with TextRulesEvent #4

Workflow file for this run

name: Regression
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- name: BUILDENV
shell: bash
run: |
rm -f BUILDENV
rustup --version >> BUILDENV
cargo --version >> BUILDENV
rustc --version >> BUILDENV
cat BUILDENV
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('BUILDENV', '**/Cargo.lock') }}
- run: cargo build
- run: cargo test