Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NexushasTaken authored Dec 2, 2024
1 parent 7cad815 commit 411c699
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
name: Main
on: [push]
jobs:
examples_template:
macos:
runs-on: macos-latest # This runs the job on macOS
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: |
brew install glfw libgles2
- name: Download c3 tool
run: wget https://github.com/c3lang/c3c/releases/download/latest/c3-macos.zip
- name: Extract c3 tool
run: unzip c3-macos.zip
- name: List directory structure
run: tree -L 2
- name: Build with c3
run: ./c3/c3c build examples_template
linux:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit 411c699

Please sign in to comment.