You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it might be convenient to document in the Readme how to test multiple versions using matrix builds, e.g.:
# This workflow will test on Deno lastest stable major and canary# see https://github.com/marketplace/actions/setup-deno for detailsname: Deno CIon: [push, pull_request]jobs:
build:
runs-on: ubuntu-lateststrategy:
matrix:
deno-version: [vx.x.x, canary]steps:
- uses: actions/checkout@v2
- name: Use Deno ${{ matrix.deno-version }}uses: denoland/setup-deno@v1
- run: deno test
Hi,
it might be convenient to document in the Readme how to test multiple versions using matrix builds, e.g.:
I have this working at https://github.com/seriousme/durable-data/blob/master/.github/workflows/deno-ci.yml
Kind regards,
Hans
The text was updated successfully, but these errors were encountered: