mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
2f5d37e86e
And run tests for desktop and mobile. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
24 lines
416 B
YAML
24 lines
416 B
YAML
name: Linux Qt 5.12 Ubuntu 19.10
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
buildInContainer:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:19.10
|
|
|
|
steps:
|
|
- name: checkout sources
|
|
uses: actions/checkout@v1
|
|
|
|
- name: run build
|
|
run: |
|
|
cd ..
|
|
bash -x subsurface/.github/workflows/scripts/ubuntu-in-container-build.sh
|
|
|