Merge pull request #229 from schungx/master

Plugins.
This commit is contained in:
Stephen Chung
2020-08-31 12:30:55 +08:00
committed by GitHub
147 changed files with 7825 additions and 1238 deletions

View File

@@ -4,6 +4,7 @@ on:
push:
branches:
- master
- plugins
pull_request: {}
jobs:
@@ -76,3 +77,25 @@ jobs:
with:
command: build
args: --manifest-path=no_std/no_std_test/Cargo.toml ${{matrix.flags}}
codegen_build:
name: Codegen Build
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
include:
- {toolchain: nightly, os: ubuntu-latest, experimental: false, flags: ""}
- {toolchain: nightly, os: windows-latest, experimental: false, flags: ""}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{matrix.toolchain}}
override: true
- name: Build Project
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=codegen/Cargo.toml ${{matrix.flags}}