quickerNES/.github/workflows/make.yml

26 lines
498 B
YAML
Raw Normal View History

2024-01-20 06:10:55 +00:00
name: Build and Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2024-01-20 06:13:03 +00:00
with:
submodules: recursive
2024-01-20 07:07:40 +00:00
- name: Create build directory
run: mkdir build
2024-01-20 07:11:45 +00:00
- name: Installing meson and ninja
run: python3 -m pip install meson ninja
2024-01-20 07:07:40 +00:00
- name: Run meson configuration
2024-01-20 07:11:03 +00:00
run: meson setup build
- name: Building project
run: ninja -C build