Skip to content

release(cli/tests): v0.1.0 #472

release(cli/tests): v0.1.0

release(cli/tests): v0.1.0 #472

Workflow file for this run

name: Main
on:
push:
branches:
- main
permissions: read-all
jobs:
lint:
name: Lint
runs-on: self-hosted
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint files
uses: dagger/dagger-for-github@8.0.0
with:
module: github.com/go-orb/plugins
args: lint --root=. logs
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
version: latest
test:
name: Unit Tests
runs-on: self-hosted
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run unit tests
uses: dagger/dagger-for-github@8.0.0
with:
module: github.com/go-orb/plugins
args: test --root=. logs
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
version: latest