upgrade (some) deps; rename to yarge-test-bench #239
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update README | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
readme: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# - name: Install required packages | |
# run: sudo sh setup.sh | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
default: true | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Run tests | |
run: cargo test --package yarge-core --features dbg-breakpoint-on-ld-b-b,dbg-breakpoints --no-fail-fast --quiet --lib -- -Z unstable-options --format json > _test_result.json | |
continue-on-error: true | |
timeout-minutes: 10 | |
- name: Update README | |
run: node readme-gen.mjs --input-type=module | |
- name: Add & Commit | |
uses: EndBug/[email protected] | |
with: | |
add: 'README.md' |