Add closing delimiter that was missing in rust generated code #88
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: flatdata-generator | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLORS: always | |
jobs: | |
Build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install | |
run: | | |
cd flatdata-generator | |
# runtime requirements | |
pip install -r requirements.txt | |
# CI requirements | |
pip install nose pylint | |
- name: Run tests | |
run: | | |
cd flatdata-generator | |
python -m nose | |
pip install . | |
flatdata-generator --help |