Skip to content

feat: add support for custom embedded folder and remove -d flag for daemon mode #88

feat: add support for custom embedded folder and remove -d flag for daemon mode

feat: add support for custom embedded folder and remove -d flag for daemon mode #88

Workflow file for this run

name: πŸ“’ Lint, Test & Publish
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
name: 🚨 Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.1
- uses: golangci/golangci-lint-action@v6
test:
name: πŸ§ͺ Test
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.1
- name: Install slangroom-exec
run: make build
- name: Run go tests
run: go test -v ./...
- name: Run stepci tests
run: |
out/bin/twinroom --daemon &
sleep 5
npx stepci run workflow.stepci.yml
release:
name: πŸ”– Release
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.1
- uses: go-semantic-release/action@v1
with:
hooks: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MATTERMOST_WEBHOOK: ${{ secrets.MATTERMOST_WEBHOOK }}