Skip to content

Commit

Permalink
Remove Codecov and replace with regular Deno test
Browse files Browse the repository at this point in the history
  • Loading branch information
FinlayDaG33k committed Jan 30, 2024
1 parent 69e37c2 commit fb920a3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/codecov.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
submodules: true
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: "1.30.0"
- name: Run tests
run: deno test --allow-read --allow-env

0 comments on commit fb920a3

Please sign in to comment.