Skip to content

update time dependency #43

update time dependency

update time dependency #43

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check Cargo.lock
run: cargo fetch --locked
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Test
shell: bash
run: cargo test