Skip to content

Commit

Permalink
ci: github actions (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Oct 15, 2019
1 parent 7f61ae0 commit cbeb8dd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .circleci/config.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v1
- name: Install Deno
run: |
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.20.0
- name: Run Tests
run: |
export PATH=$HOME/.deno/bin:$PATH
deno -A test

0 comments on commit cbeb8dd

Please sign in to comment.