Skip to content

renovate.json: add company config #21

renovate.json: add company config

renovate.json: add company config #21

Workflow file for this run

name: "CI"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build & Test
run: cargo build && cargo test