temporary delete ts files #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gradify Build | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-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 |