Skip to content

Commit

Permalink
ci(test): Created workflow to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EGAMAGZ committed Apr 18, 2024
1 parent 6036277 commit f6d3044
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests
on:
pull_request:
branches: [master]
push:
branches: ["*"]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run tests
run: deno test
3 changes: 3 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
},
"imports": {
"@std/testing": "https://deno.land/[email protected]/assert/mod.ts"
},
"tasks": {
"doc": "deno doc --html --name='Paska Ovo' src"
}
}

0 comments on commit f6d3044

Please sign in to comment.