Solve 9v00670015fe0000000004b1 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: ['trunk'] | |
pull_request: | |
branches: ['trunk'] | |
workflow_dispatch: | |
permissions: {} | |
concurrency: | |
group: 'ci-${{ github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: alpine:edge | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare | |
run: apk add --no-cache kakoune nushell | |
- name: Test | |
run: nu -c 'use toolkit.nu; toolkit test' |