v0.1.3 - msrv 1.63, cxx downgrade (#3) #40
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
on: [push, pull_request] | |
name: Docker Tests | |
jobs: | |
test: | |
name: Docker Tests | |
runs-on: ubuntu-latest | |
container: mwatelescope/birli:latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Stable toolchain | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
export PATH="${HOME}/.cargo/bin:${PATH}" | |
rustup set profile default | |
rustup toolchain install stable --component rustfmt,clippy | |
rustup default stable | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-make | |
- name: Install deps | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: ci |