mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
Try using github actions
Let's see how badly this goes
This commit is contained in:
parent
a35a2e877e
commit
6531aaa7bc
1 changed files with 20 additions and 0 deletions
20
.github/workflows/ccpp.yml
vendored
Normal file
20
.github/workflows/ccpp.yml
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue