mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
dfccf8e139
Also reworks some dependency handling
22 lines
628 B
YAML
22 lines
628 B
YAML
name: Harness
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
run-make-all:
|
|
# The type of runner that the job will run on
|
|
runs-on: self-hosted
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Prepare container with all dependencies
|
|
run: git archive HEAD | docker build - --target dev-build-context
|
|
- name: Run builds, checks and tests
|
|
run: git archive HEAD | docker build -
|