Skip to content

enable GitHub Dependabot #14

enable GitHub Dependabot

enable GitHub Dependabot #14

Workflow file for this run

name: Build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build default
run: cargo build --verbose
- name: Build without alloc
run: cargo build --no-default-features --verbose
- name: Test default
run: cargo test --verbose
- name: Test without alloc
run: cargo test --no-default-features --verbose