https://github.com/shihanng/csvs-to-sqlite-act
GitHub Actions for csvs-to-sqlite https://github.com/simonw/csvs-to-sqlite.
https://github.com/shihanng/csvs-to-sqlite-act
csv datasette datasette-io github-actions python sqlite
Last synced: 2 months ago
JSON representation
GitHub Actions for csvs-to-sqlite https://github.com/simonw/csvs-to-sqlite.
- Host: GitHub
- URL: https://github.com/shihanng/csvs-to-sqlite-act
- Owner: shihanng
- License: apache-2.0
- Created: 2020-06-28T11:56:57.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-07-21T13:14:05.000Z (almost 6 years ago)
- Last Synced: 2025-03-20T21:26:30.682Z (about 1 year ago)
- Topics: csv, datasette, datasette-io, github-actions, python, sqlite
- Language: Shell
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csvs-to-sqlite's GitHub Action
This action converts CSV files into a SQLite database using [`csvs-to-sqlite`](https://github.com/simonw/csvs-to-sqlite).
The action uses a [dockerized version of `csvs-to-sqlite`](https://github.com/shihanng/csvs-to-sqlite-docker).


## Inputs
### `working_directory`
Specify working-directory. Default is the root of the project.
### `cli_args`
**Required** Arguments to pass to `csvs-to-sqlite`.
## Example usage
```yml
- uses: shihanng/csvs-to-sqlite-act@v1.0.0
with:
cli_args: test.csv test.db
working_directory: ./
```