Skip to content

Commit

Permalink
Adding CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderOMara committed Nov 2, 2024
1 parent 4d06d16 commit 6e7d758
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

on:
push:
branches:
pull_request:

jobs:
test:
strategy:
matrix:
config:
- deno-version: 2.0.4

name: Deno ${{ matrix.config.deno-version }}

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deno
uses: denolib/setup-deno@v2
with:
deno-version: ${{ matrix.config.deno-version }}

- name: Test
run: deno task test

0 comments on commit 6e7d758

Please sign in to comment.