Skip to content

Commit

Permalink
Dos Cosas
Browse files Browse the repository at this point in the history
I added code coverage to the github workflow, and I fixed the link to the
documentation in the README.md file.
  • Loading branch information
uberFoo committed Nov 22, 2023
1 parent 34fd454 commit d387747
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
31 changes: 17 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
name: Rust

on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
push:
branches: ['master', 'develop']
pull_request:
branches: ['master', 'develop']

env:
CARGO_TERM_COLOR: always
CARGO_TERM_COLOR: always

jobs:
build:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- code coverage

### Fixed

- clippy lints
- readme link to documentation

## [0.0.2] - 2023-11-22

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ executor.start_task(&task);
future::block_on(task);
```

Check out the [documentation](https://docs.rs/puteketeke/0.0.1/puteketeke/) for usage information.
Check out the [documentation](https://docs.rs/puteketeke/latest/puteketeke/index.html) for usage information.

## Purpose — or; do we need another runtime?

Expand Down

0 comments on commit d387747

Please sign in to comment.