PR: Adjust libargon dylib opening #121
Workflow file for this run
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: jobberknoll-ci | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "implementation/jobberknoll/**" | |
- ".github/workflows/jobberknoll.yml" | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: | |
- main | |
paths: | |
- "implementation/jobberknoll/**" | |
- ".github/workflows/jobberknoll.yml" | |
jobs: | |
build: | |
if: github.event.pull_request.draft == false | |
name: Build and test project | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: implementation/jobberknoll | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: "~2.1" | |
- name: Format code | |
run: deno fmt --check | |
- name: Typecheck code | |
run: deno check . | |
- name: Lint code | |
run: deno lint | |
- name: Test code | |
run: deno run test | |
- name: Compile code | |
run: deno task compile |