Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 27 days 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-07-21T13:14:05.000Z (over 4 years ago)
- Last Synced: 2024-10-16T00:32:38.803Z (about 1 month ago)
- Topics: csv, datasette, datasette-io, github-actions, python, sqlite
- Language: Shell
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 3
- 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).![CI](https://github.com/shihanng/csvs-to-sqlite-act/workflows/Tests/badge.svg)
![GitHub](https://img.shields.io/github/license/shihanng/csvs-to-sqlite-act)## 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/[email protected]
with:
cli_args: test.csv test.db
working_directory: ./
```