Skip to content

update LICENSE

update LICENSE #167

Workflow file for this run

name: build
on:
push:
paths-ignore:
- 'examples/**'
- 'README.md'
branches: [ "main", "stable" ]
pull_request:
branches: [ "main", "stable" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
rustup toolchain install nightly
- name: build and clippy
run: RUSTFLAGS="-Z threads=4" cargo +nightly build --future-incompat-report && cargo clippy