Skip to content

Analyze update

Analyze update #86

Workflow file for this run

name: monorail
on:
push:
branches:
- main
pull_request:
branches:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
monorail:
name: monorail
runs-on: ubuntu-latest
env:
MONORAIL_TEST_DIR : ${{ github.workspace }}/tmp
steps:
- name: prep
run: |
mkdir -p $MONORAIL_TEST_DIR
sudo chown -R $USER:$USER ${{ github.workspace }}
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "[email protected]"
- name: deps
uses: actions/checkout@v2
- name: rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: clippy
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: clippy
args: -- -D warnings
- name: build
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: build
args: --verbose --all
- name: test
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: test
args: -- --nocapture