Issue 787: enable SQLITE_ENABLE_UPDATE_DELETE_LIMIT #174
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: dockerfile | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
pull_request: | |
branches: [ master ] | |
jobs: | |
dockerfile: | |
name: Run Dockerfiles in examples | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run example - simple | |
run: | | |
cd ./_example/simple | |
docker build -t simple . | |
docker run simple | grep 99\ こんにちは世界099 |