Update Postgres 17 #190
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: [ '*' ] | |
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 the database file writable | |
run: | | |
sudo chown $USER:$USER ./output/output.db | |
chmod -R 777 ./output/output.db | |
- 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 |