kraken-build/: feature: Add kraken.build
module which allows importing the current context
and project
from a build script as if calling Context.current()
or Project.current()
#493
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: "Data" | |
on: | |
push: { branches: [ "develop" ], tags: [ "*" ] } | |
pull_request: { branches: [ "*" ] } | |
env: | |
COLUMNS: 200 | |
jobs: | |
gitignore-io-up-to-date: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: NiklasRosenstein/slap@gha/install/v1 | |
- uses: actions/setup-python@v4 | |
with: { python-version: "3.10" } | |
- run: slap install --link --no-venv-check ${{ matrix.only }} | |
- run: python -m kraken.std.git.gitignore.gitignore_io | |
- run: git diff --exit-code |