Skip to content

build(deps): update http requirement from 0.2 to 1.0 #116

build(deps): update http requirement from 0.2 to 1.0

build(deps): update http requirement from 0.2 to 1.0 #116

Workflow file for this run

name: Chute Continuous Integration
on:
push:
paths:
- "chute/**"
- "utils/**"
- ".github/workflows/chute.yml"
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: chute
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checking out sources
uses: actions/checkout@v3
- run: rustup toolchain install stable
- uses: Swatinem/rust-cache@v2
- name: Checking formatting
run: cargo fmt --check
- name: Checking lints
run: cargo clippy --all-targets -- -D warnings
build:
needs: [check]
runs-on: ubuntu-latest
steps:
- name: Checking out sources
uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Compiling
run: cargo rustc --profile distribution
- name: Upload bin artefact
uses: actions/upload-artifact@v3
with:
name: chute
path: target/distribution/chute