Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
test:
strategy:
fail-fast: false
matrix:
rust: [stable, nightly]

runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1

steps:
- uses: actions/checkout@v7

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}

- name: Cache cargo
uses: Swatinem/rust-cache@v2

- name: cargo test
run: cargo test

- name: cargo test (remote server)
run: cargo test
env:
GLUON_TEST_REMOTE_SERVER: 1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ target

out
server
dist
node_modules
*.bk
*.vsix
Expand Down
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

17 changes: 8 additions & 9 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.vscode/**
typings/**
out/test/**
test/**
target/**
**/*.map
.gitignore
tsconfig.json
vsc-extension-quickstart.md
**

!package.json
!dist
!syntaxes/

!readme.md
!LICENSE
Loading