Skip to content

Create verify.yml

Create verify.yml #9

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
verify-job:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./inteview-mono-repo
container:
image: mcr.microsoft.com/devcontainers/universal:focal
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Debug Filepath
run: |
echo "$PWD"
working-directory: '/__w/interview-mono-repo/interview-mono-repo'
shell: bash
- name: Init and Verify Languages
run: |
for dir in */
do
make init -C $dir
make verify -C $dir
done
working-directory: '/__w/interview-mono-repo/interview-mono-repo'
shell: bash