vendor pretty-print dep
This commit is contained in:
parent
4a6c1020f4
commit
52a80cfb0e
40 changed files with 2766 additions and 6 deletions
27
pretty-print/.github/workflows/rust.yml
vendored
Normal file
27
pretty-print/.github/workflows/rust.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master, dev ]
|
||||
pull_request:
|
||||
branches: [ master, dev ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
steps:
|
||||
- run: git config --global core.autocrlf false
|
||||
- uses: actions/checkout@v2
|
||||
- name: Rust Nightly
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
override: true
|
||||
components: rustfmt, clippy
|
||||
- name: Build
|
||||
run: cargo build --release
|
||||
# - name: Tests
|
||||
# run: cargo test --release
|
||||
Loading…
Add table
Add a link
Reference in a new issue