Skip to content

Commit 8497b4d

Browse files
author
Thomas N
committed
chore: try mise ci
1 parent 6b4e05d commit 8497b4d

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: ci
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
env:
13+
MISE_EXPERIMENTAL: true
14+
15+
jobs:
16+
ci:
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: jdx/mise-action@v2
22+
- run: mise run ci

mise.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,7 @@ fi
4747
git commit -m "Update documentation output"
4848
git push
4949
"""
50+
51+
[tasks.ci]
52+
description = 'Run CI tasks'
53+
depends = ['lint', 'test']

0 commit comments

Comments
 (0)