Skip to content

Removing Obsidian

Removing Obsidian #71

Workflow file for this run

name: Checks (Pull Request)
on:
pull_request:
branches:
- main
paths-ignore:
- "**/**.md"
jobs:
lint:
name: Lint
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- run: ./sx lint
shell: bash
tests:
name: Tests
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- run: ./sx test
shell: bash
build:
name: Build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: docker/setup-buildx-action@v3
- run: ./alien/alien --build
shell: bash