Skip to content

Commit

Permalink
👷 Add test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Jun 1, 2020
1 parent db06402 commit 7b33240
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test CI
on:
push:
branches-ignore:
- "master"
pull_request:
branches-ignore:
- "master"
jobs:
build:
name: ${{ matrix.kind }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
env:
GH_ACTIONS: true
DENO_BUILD_MODE: release
V8_BINARY: true
steps:
- uses: actions/checkout@v2
- name: Setup Deno
uses: denolib/setup-deno@master
with:
deno-version: 1.x
- name: Run tests
run: deno test --allow-read

0 comments on commit 7b33240

Please sign in to comment.