CRE-2461: switch GHA runner to self-hosted #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: pull_request | |
jobs: | |
test: | |
name: Test | |
runs-on: [ self-hosted, jimdo-runner-1core ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Test the application | |
run: make test | |
- name: Build the application | |
run: make build |