Update premake.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Run premake | |
uses: abel0b/[email protected] | |
with: | |
version: '5.0.0-beta2' | |
- name: Compile my project | |
run: | | |
premake5 gmake2 | |
make |