Skip to content

Create verify.yml

Create verify.yml #4

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
verify-job:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/devcontainers/universal:focal
steps:
- run: |
for dir in /*/;
do
echo "$dir"
make init -C $dir
make verify -C $dir
done