Skip to content

Fix outdated chrono warning #300

Fix outdated chrono warning

Fix outdated chrono warning #300

Workflow file for this run

on:
push:
branches:
- "master"
paths:
- "**.rs"
- "Cargo.toml"
- "Cargo.lock"
pull_request:
branches:
- "master"
paths:
- "**.rs"
- "Cargo.toml"
- "Cargo.lock"
name: Test
jobs:
test:
name: "Test"
strategy:
matrix:
os:
- "windows-latest"
- "ubuntu-latest"
- "macos-latest"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install GNU tar for macos # Fix for macos caching, https://github.com/actions/cache/issues/403
if: matrix.os == 'macos-latest'
run: |
brew install gnu-tar
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-test-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace