Skip to content

chore(deps): bump shlex from 1.2.0 to 1.3.0 #33

chore(deps): bump shlex from 1.2.0 to 1.3.0

chore(deps): bump shlex from 1.2.0 to 1.3.0 #33

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: rust:latest
options: --user root --privileged --cap-add=NET_ADMIN
steps:
- uses: actions/checkout@v3
- name: install-deps
run: apt update && apt install clang -y
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose