Skip to content

Bump tokio from 1.41.0 to 1.41.1 #176

Bump tokio from 1.41.0 to 1.41.1

Bump tokio from 1.41.0 to 1.41.1 #176

Workflow file for this run

name: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Cache dependencies
uses: Swatinem/[email protected]
- name: Build
run: cargo +nightly build -r
- name: Run tests
run: cargo +nightly test
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: build
# A file, directory or wildcard pattern that describes what to upload
path: target/release/
# The desired behavior if no files are found using the provided path.