Simple build check

This commit is contained in:
Toby Jaffey 2025-12-10 10:44:19 +00:00
parent e07eeab043
commit f4cccc8853

19
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: uvm32
- name: Build
run: make
working-directory: uvm32