diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml deleted file mode 100644 index ae9cae0..0000000 --- a/.github/workflows/deno.yml +++ /dev/null @@ -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 - - 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