chore(deps): update reqwest requirement from 0.11 to 0.12 #20
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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run Clippy | |
run: cargo clippy | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/slickbench/docker-rust-base:main | |
options: --security-opt seccomp=unconfined | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run Tests | |
env: | |
XERO_CLIENT_ID: ${{ secrets.XERO_CLIENT_ID }} | |
XERO_CLIENT_SECRET: ${{ secrets.XERO_CLIENT_SECRET }} | |
run: cargo llvm-cov --all-features --lcov --output-path lcov.info | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v2 | |
with: | |
files: lcov.info | |
fail_ci_if_error: true |