Enable cross-project backup restore #211
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- pull_request | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macos-11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v1 | |
- name: Install current stable Rust compiler | |
run: | | |
rustup update | |
rustup default stable | |
- name: install Just | |
uses: extractions/setup-just@v1 | |
with: | |
just-version: 1.14.0 | |
- name: Build and Test | |
run: just ci |