diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml new file mode 100644 index 0000000..72d35f2 --- /dev/null +++ b/.github/workflows/server.yml @@ -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