Skip to content

Merge pull request #10 from SofusA/manage-Microsoft.CodeAnalysis.Lang… #9

Merge pull request #10 from SofusA/manage-Microsoft.CodeAnalysis.Lang…

Merge pull request #10 from SofusA/manage-Microsoft.CodeAnalysis.Lang… #9

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
types: [ opened, reopened, synchronize ]
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose