Skip to content

Fix warnings: zero as null pointer constant #430

Fix warnings: zero as null pointer constant

Fix warnings: zero as null pointer constant #430

Workflow file for this run

# macos.yml
# base code from https://github.com/jaredtao/HelloActions-Qt
name: MacOS
on:
push:
paths-ignore:
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
- 'README.ko.md'
- 'README.md'
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
- 'Vision.md'
- 'LICENSE'
pull_request:
paths-ignore:
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
- 'README.ko.md'
- 'README.md'
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
- 'Vision.md'
- 'LICENSE'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
qt_ver: [5.12.6]
qt_target: [desktop]
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v2.13.2
with:
version: ${{ matrix.qt_ver }}
target: ${{ matrix.qt_target }}
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: build
run: |
cd TestExcel
qmake
make