Skip to content

add plugin to build.yml #8

add plugin to build.yml

add plugin to build.yml #8

Workflow file for this run

name: Gradify Build
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/[email protected]
with:
version: 6.4.3
modules: qtcharts
- name: Configure
run: qmake -makefile src/Gradify.pro
- name: Build
run: make
- name: Test
run: make test
- name: Package
run: make install