Merge pull request #3 from Snider/feature/github-workflow

Remove Deno workflow
This commit is contained in:
Snider 2025-10-30 18:30:04 +00:00 committed by GitHub
commit ef2bca38e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,35 +0,0 @@
name: Deno Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
steps:
- name: Setup repo
uses: actions/checkout@v2
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# Check if the code is formatted according to Deno's default
# formatting conventions.
- if: matrix.os == 'ubuntu-20.04'
run: deno fmt --check
# Scan the code for syntax errors and style issues. If
# you want to use a custom linter configuration you can add a configuration file with --config <myconfig>
- run: deno lint
# This generates a report from the collected coverage in `deno test --coverage`. It is
# stored as a .lcov file which integrates well with services such as Codecov, Coveralls and Travis CI.
- name: Generate coverage report
if: matrix.os == 'ubuntu-20.04'
run: deno coverage --lcov cov > cov.lcov