Skip to content

feat: add python

feat: add python #18

Workflow file for this run

on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.22'
- uses: bazel-contrib/[email protected]
with:
bazelisk-cache: true
repository-cache: true
- run: go install github.com/hay-kot/[email protected]
- name: Scaffold new kitchen-sink app
id: kitchen-sink
run: |
scaffold new --preset=kitchen-sink --no-prompt $GITHUB_WORKSPACE
cd scaffold_test*
git init
echo "::set-output name=dir::$PWD"
- name: Test kitchen-sink
working-directory: "${{ steps.kitchen-sink.outputs.dir }}"
run: |
bazel test ...
bazel run format