Bump mysql2 from 1.6.5 to 3.9.4 in /test/frameworks/JavaScript/nodejs #29
Workflow file for this run
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: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
TFB_HOME: ./test | |
RUST_BACKTRACE: full | |
CLICOLOR_FORCE: 1 | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-18.04, ubuntu-20.04, windows-2019, macos-11.0] | |
# "The Rust team appreciates testing against the beta and | |
# nightly channels, even if you are only targeting stable." | |
toolchain: [stable, nightly] | |
fail-fast: false | |
continue-on-error: ${{ matrix.toolchain == 'nightly' }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- name: Run the tests | |
run: cargo test -- --nocapture |