CI: Add workflow file for labelling issues as 'High Priority' #1073
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
on: [push, pull_request,repository_dispatch] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
sql: | |
name: SQL | |
runs-on: macos-latest | |
env: | |
GEN: ninja | |
steps: | |
- name: Install Ninja | |
run: brew install ninja | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Update DuckDB submodule | |
run: | | |
git config --global --add safe.directory '*' | |
make pull | |
- name: Build | |
run: make release | |
- name: Test | |
run: make test_release |