libretro-chailove/.github/workflows/build.yml
2023-09-29 10:10:39 -04:00

27 lines
449 B
YAML

name: Build
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
#- name: Install
# run: |
# sudo apt-get update
# sudo apt-get install cmake time g++-7 gcc-7 binutils libc6 python
- name: Configure
run: ./configure
- name: Build
run: make
- name: Test
run: make test