mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-30 13:27:26 +00:00
Move to github actions step 1
This commit is contained in:
parent
e44b10225a
commit
51dd25206e
1 changed files with 23 additions and 0 deletions
23
.github/workflows/server.yml
vendored
Normal file
23
.github/workflows/server.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue