Skip to content

Commit

Permalink
Create github.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mvngr authored and Mikhail Vinogradov committed Mar 2, 2024
1 parent 3b15a6b commit 0e23d17
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: C/C++ CI

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

jobs:
build:
name: Ubuntu
runs-on: ubuntu-latest
container: ubuntu:focal

steps:
- name: prepare instance
run: |
export DEBIAN_FRONTEND=noninteractive
apt update
apt install -y build-essential qt5-qmake qtbase5-dev qtdeclarative5-dev
- name: qmake
run: qmake -makefile

- name: Build
run: make -j$(nproc)

0 comments on commit 0e23d17

Please sign in to comment.