mirror of https://github.com/getmango/Mango.git
Create build.yml
This commit is contained in:
parent
da2708abe5
commit
6eba3fe351
|
@ -0,0 +1,24 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master, dev ]
|
||||
pull_request:
|
||||
branches: [ master, dev ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
container:
|
||||
image: crystallang/crystal:0.32.1-alpine
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: apk add --no-cache yarn yaml sqlite-static
|
||||
- name: Build
|
||||
run: make
|
||||
- name: Run tests
|
||||
run: make test
|
Loading…
Reference in New Issue