Files
docker-vbtrfs-plugin/.gitea/workflows/ci.yml
Max P. f6177dbe14
All checks were successful
Auto Changelog & (Release) / release (push) Successful in 14s
CI / ci (push) Successful in 21s
feat(btrfs): add CLI and mock drivers with test utilities and interfaces
Co-authored-by: Max P. <mail@0xMax42.io>
Co-committed-by: Max P. <mail@0xMax42.io>
2025-10-12 15:04:55 +02:00

47 lines
893 B
YAML

name: CI
on:
workflow_dispatch:
push:
branches:
- "*"
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v2.x
- name: Format
id: format
continue-on-error: true
run: deno task make fmt
- name: Lint
id: lint
continue-on-error: true
run: deno task make lint
- name: Test
id: test
continue-on-error: true
run: deno task make test
- name: Fail if any step failed
if: |
steps.format.outcome != 'success' ||
steps.lint.outcome != 'success' ||
steps.test.outcome != 'success'
run: |
echo "::error::One or more steps failed"
exit 1