mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-06 04:45:31 -04:00
27 lines
457 B
YAML
27 lines
457 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, dev ]
|
|
pull_request:
|
|
branches: [ master, dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: crystallang/crystal:0.34.0-alpine
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: apk add --no-cache yarn yaml sqlite-static
|
|
- name: Build
|
|
run: make
|
|
- name: Linter
|
|
run: make check
|
|
- name: Run tests
|
|
run: make test
|