Skip to content

Add 'Spawn Mode' project #6

Add 'Spawn Mode' project

Add 'Spawn Mode' project #6

Workflow file for this run

name: Integration
on:
push:
branches: ["master"]
# Allows running this workflow manually from the Actions tab.
workflow_dispatch:
# Runs the workflow on the first day of every month
schedule:
- cron: '0 0 1 * *'
jobs:
check:
strategy:
matrix:
include:
- {name: etv, repo: term-validator}
- {name: spawn_mode, repo: spawn-mode}
runs-on: ubuntu-latest
container:
image: erlang:latest
steps:
- name: Get the source code
uses: actions/checkout@v3
- name: Check project integration
run: |
cd myproject
sed \
-e 's/@project_name/${{matrix.name}}/g' \
-e 's/@project_repo/${{matrix.repo}}/g' \
Makefile.in > Makefile
make