Skip to content

Bump shlex from 1.1.0 to 1.3.0 #329

Bump shlex from 1.1.0 to 1.3.0

Bump shlex from 1.1.0 to 1.3.0 #329

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install deps [Linux]
run: sudo apt-get install -y libssl1.0-dev libssl1.0
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tests
run: cargo test --all
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install deps
run: sudo apt-get install -y libssl1.0-dev libssl1.0
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
env:
RUSTFLAGS: -C target-cpu=native
with:
version: '0.11.0'
args: '--out Xml --exclude-files target* --exclude-files depricated/* --all'
- uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./cobertura.xml