Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
laqieer authored Dec 4, 2024
1 parent ce6988c commit 12edc66
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest
container: devkitpro/devkitarm

steps:
- uses: actions/checkout@v4

- name: Install python dependencies
run: apt-get update && apt-get install -y python3-pip && python3 -m pip install --upgrade pip && python3 -m pip install --upgrade Pillow

- name: Build examples/butano
run: cd .. && git clone https://github.com/GValiente/butano.git && cd gba-free-fonts/examples/butano && make

0 comments on commit 12edc66

Please sign in to comment.