This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
build(deps): Bump tokio from 1.32.0 to 1.33.0 #1573
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: Rust CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "ubuntu-22.04-shared-cache" | |
- name: Run Rust check + clippy | |
run: make rust-check | |
build_ui: | |
name: Build UI | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: npm install | |
run: npm install --prefix ./packages/washboard | |
- name: npm run build | |
run: npm run build --prefix ./packages/washboard | |
unit_tests: | |
name: Unit Tests | |
strategy: | |
fail-fast: false # Ensure we can run the full suite even if one OS fails | |
matrix: | |
os: [ubuntu-22.04, windows-latest-8-cores, macos-11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "${{ matrix.os }}-shared-cache" | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Build wash | |
run: make build | |
- name: Run all wash & wash-lib unit tests | |
run: make test-wash-ci | |
integration_tests: | |
name: Integration Tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "ubuntu-22.04-shared-cache" | |
- uses: acifani/setup-tinygo@v1 | |
with: | |
tinygo-version: '0.27.0' | |
install-binaryen: 'false' | |
- name: Add wasm32-unknown-unknown | |
run: rustup target add wasm32-unknown-unknown | |
- name: Launch integration test services | |
uses: sudo-bot/action-docker-compose@latest | |
with: | |
cli-args: "-f ./tools/docker-compose.yml up --detach" | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Run integration tests | |
run: make test-integration-ci |