Skip to content

chore(deps): update env_logger requirement from 0.10.0 to 0.11.1 in /xp-bot #220

chore(deps): update env_logger requirement from 0.10.0 to 0.11.1 in /xp-bot

chore(deps): update env_logger requirement from 0.10.0 to 0.11.1 in /xp-bot #220

Workflow file for this run

name: Check Build
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
defaults:
run:
working-directory: xp-bot
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cargo Cache
uses: actions/cache@v1
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }}
${{ runner.os }}-cargo
- name: Cargo Target Cache
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }}
${{ runner.os }}-cargo-target
- name: Build
run: cargo check -p xp-bot --verbose
- name: Run tests
run: cargo test -p xp-bot --verbose