Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/re-actors/bindep
A GitHub Action allowing to pre-provision the current VM with OS packages listed in `bindep.txt` per https://pypi.org/p/bindep
https://github.com/re-actors/bindep
Last synced: 4 days ago
JSON representation
A GitHub Action allowing to pre-provision the current VM with OS packages listed in `bindep.txt` per https://pypi.org/p/bindep
- Host: GitHub
- URL: https://github.com/re-actors/bindep
- Owner: re-actors
- License: bsd-3-clause
- Created: 2021-11-26T13:54:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T01:36:24.000Z (about 3 years ago)
- Last Synced: 2024-11-11T07:47:46.288Z (2 months ago)
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `bindep`
A GitHub Action that lets you pre-provision the current CI VM with
OS packages listed in `bindep.txt` using [bindep].## Usage
To use the action add the following step to your workflow file (e.g.
`.github/workflows/ci-cd.yml`)```yml
- name: Provision OS packages from `bindep.txt`
uses: re-actors/bindep@release/v1
with:
file: bindep.txt
profile: test
```## Options
There are two options — `file` and `profile`. Both are optional. See
[bindep] for more details.## Related community projects
Check out the [tox-bindep] to have [bindep]-based checks in your
[tox] setup.## License
The Dockerfile and associated scripts and documentation in this project
are released under the [BSD 3-clause license].[bindep]: https://pypi.org/p/bindep
[BSD 3-clause license]: LICENSE.md
[tox]: https://tox.wiki
[tox-bindep]: https://github.com/tox-dev/tox-bindep