mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
20 lines
296 B
YAML
20 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
|