Move to github actions step 1

This commit is contained in:
Noah Santschi-Cooney 2021-01-29 23:41:12 +00:00 committed by GitHub
parent e44b10225a
commit 51dd25206e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/server.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: LSP Server
on:
push:
branches: [ rust-rewrite ]
pull_request:
branches: [ rust-rewrite ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-11.0, macos-10.15]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose