Skip to content

Create dependabot.yml #16

Create dependabot.yml

Create dependabot.yml #16

Workflow file for this run

name: build
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all