feat: Add issue templates for bug reports and feature requests #409
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [ '**' ] | |
tags-ignore: [ '**' ] | |
paths-ignore: [ '**.md', '**.adoc' ] | |
pull_request: | |
branches: [ '**' ] | |
paths-ignore: [ '**.md', '**.adoc' ] | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, 'deploy+') == false | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
env: | |
- { CXX: g++, CC: gcc, CXX_FOR_BUILD: g++, CC_FOR_BUILD: gcc } | |
- { CXX: clang++, CC: clang, CXX_FOR_BUILD: clang++, CC_FOR_BUILD: clang } | |
steps: | |
- name: checkout-source | |
uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: update-system | |
run: sudo apt-get update -qq | |
- name: install-deps | |
run: sudo apt-get install libibus-1.0-dev libzstd-dev qtbase5-dev qtbase5-dev-tools rustc cargo | |
- name: make | |
env: ${{ matrix.env }} | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make | |