Some checks failed
Initializing rust environment. / build (ubuntu-20.04) (push) Failing after 45s
31 lines
592 B
YAML
31 lines
592 B
YAML
name: Initializing rust environment.
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update system
|
|
run: |
|
|
apt-get update -qy
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get install -y curl gcc git
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > ./rustup.sh
|
|
chmod +x rustup.sh
|
|
./rustup.sh -y
|
|
|
|
- name: Running testbench
|
|
run: |
|
|
. "$HOME/.cargo/env
|
|
cargo test
|