Release/23.10 #153
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: Merge SQL files | |
# This workflow run automatically for every commit on github it checks the syntax and launch the tests. | |
# | grep . | uniq -c filters out empty lines and then groups consecutive lines together with the number of occurrences | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
comment: | |
description: Just a simple comment to know the purpose of the manual build | |
required: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Merge me! | |
run : bash script/concatenate_files.sh | |
- name: Publish artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: sql-files | |
path: output |