Skip to content

Commit

Permalink
Updating actions
Browse files Browse the repository at this point in the history
  • Loading branch information
acrodrig committed Dec 2, 2024
1 parent 6b6a4ca commit 43b9a17
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,23 @@ env:

jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
# Check out the code
- uses: actions/checkout@v4

# Setup deno
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2

# Run testsm collect code coverage and generate report from the collected coverage
- run: deno test --allow-all --coverage=cov/
- run: deno coverage --lcov cov/ > cov.lcov

# Upload to Codecov (see https://github.com/marketplace/actions/codecov)
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: cov.lcov
files: cov.lcov
fail_ci_if_error: true

# Check that code is correctly formatted
Expand Down

0 comments on commit 43b9a17

Please sign in to comment.