Bump cmake minimum required version to 3.10 (#200) #159
This file contains hidden or 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: Amalgamate | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "**/workflows/amalgamate.yml" | |
| - "**/Source/**" | |
| - "**/amalgamate.py" | |
| jobs: | |
| run: | |
| name: Create Amalgamation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Create amalgamation file | |
| run: python amalgamate.py | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| committer_name: GitHub Actions | |
| committer_email: actions@github.com | |
| message: Update amalgamation file | |
| add: 'Distribution/LuaBridge/*.h' |