Skip to content

Update create_release.yml #562

Update create_release.yml

Update create_release.yml #562

Workflow file for this run

name: Validate
on:
push:
pull_request:
branches: [ main ]
jobs:
validate:
name: Validate
strategy:
matrix:
include:
- os: macos-latest
command: ".github/workflows/val.sh"
- os: ubuntu-latest
command: ".github/workflows/val.sh"
chmod: true
- os: windows-2019
command: ".github/workflows/val.bat"
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
- name: Build
run: make all -j
- name: Validate
run: |
chmod +x .github/workflows/val.sh
${{ matrix.command }}