mirror of
https://github.com/scummvm/scummvm-tools.git
synced 2026-05-21 05:40:44 +00:00
22 lines
558 B
YAML
22 lines
558 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Ubuntu:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
# Must be explicit for proper pipefail support
|
|
shell: bash
|
|
steps:
|
|
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
|
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- run: sudo apt install libboost-all-dev
|
|
- run: ./configure
|
|
- run: make -j $(nproc)
|
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|