mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-13 12:12:14 +00:00
21 lines
296 B
YAML
21 lines
296 B
YAML
name: Smoke test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: configure
|
|
run: |
|
|
mkdir build && cd build && cmake ..
|
|
- name: build
|
|
run: |
|
|
make -j4
|
|
- name: test
|
|
run: |
|
|
ctest -V
|