Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
790b836bd8 | |||
c6bcb05ac6 | |||
f48f76d9f8 |
@ -8,10 +8,17 @@ clone:
|
|||||||
tags: true
|
tags: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
test:
|
||||||
|
image: python
|
||||||
|
commands:
|
||||||
|
- python -m unittest
|
||||||
|
when:
|
||||||
|
event: [tag, pull_request]
|
||||||
|
|
||||||
build:
|
build:
|
||||||
image: python
|
image: python
|
||||||
commands:
|
commands:
|
||||||
- python -m pip install hatchling hatch-vcs build
|
- python -m pip install build
|
||||||
- python -m build
|
- python -m build
|
||||||
when:
|
when:
|
||||||
event: tag
|
event: tag
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
A [HashiCorp Config Language](https://github.com/hashicorp/hcl) parser for Python
|
A [HashiCorp Config Language](https://github.com/hashicorp/hcl) parser for Python
|
||||||
|
|
||||||
|
[![status-badge](https://ci.elara.ws/api/badges/63/status.svg)](https://ci.elara.ws/repos/63)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
For most simple use-cases, you can use the `load*` convenience functions:
|
For most simple use-cases, you can use the `load*` convenience functions:
|
||||||
@ -48,5 +50,6 @@ Currently, this parser supports all HCL features except:
|
|||||||
|
|
||||||
- [For Expressions](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#for-expressions)
|
- [For Expressions](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#for-expressions)
|
||||||
- [Templates](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#templates)
|
- [Templates](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#templates)
|
||||||
|
- [Splat Operators](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#splat-operators)
|
||||||
|
|
||||||
Support for these features is planned.
|
Support for these features is planned.
|
Loading…
Reference in New Issue
Block a user