Add SQLite demo #8
Workflow file for this run
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: test_sqlite | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
defaults: | |
run: | |
working-directory: ./sqlite | |
jobs: | |
generation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build docker-compose | |
run: | | |
docker-compose pull | |
docker-compose build | |
- name: Make writable | |
run: chmod -R 775 ./output | |
- name: LS | |
run: ls -l | |
- name: Run the KEEP mode | |
run: | | |
export CONFIG_FILE=config_keep.tdk.yaml | |
docker-compose run tdk | |
- name: Run the GENERATION mode | |
run: | | |
export CONFIG_FILE=config_generation.tdk.yaml | |
docker-compose run tdk |