Skip to content

CI

CI #349

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
paths-ignore:
- '**/README.md'
- CONTRIBUTING.md
- LICENSE
- .editorconfig
- '.github/CODEOWNERS'
push:
branches:
- master
paths-ignore:
- '**/README.md'
- CONTRIBUTING.md
- LICENSE
- .editorconfig
- '.github/CODEOWNERS'
schedule:
# At 4:17am each Monday
- cron: '17 4 * * 1'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build Docker image
run: make docker-test-image
- name: Run tests in Docker image
run: make docker-test