Skip to content

Commit

Permalink
ci: add coverage (#8)
Browse files Browse the repository at this point in the history
* ci: put back coverage

* doc(README.md): add coverage and ci badges

* doc(README.md): fix installation script
  • Loading branch information
knowbased authored Jan 21, 2025
1 parent 7729313 commit 67bd5d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
shell: bash
timeout-minutes: 15

# - name: Coveralls
# uses: coverallsapp/github-action@master
# if: ${{ matrix.smalltalk == 'Pharo64-12' }}
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Coveralls
uses: coverallsapp/github-action@master
if: ${{ matrix.smalltalk == 'Pharo64-12' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# Bitbucket-Pharo-API

[![Continuous](https://github.com/Evref-BL/Bitbucket-Pharo-API/actions/workflows/continuous.yml/badge.svg)](https://github.com/Evref-BL/Bitbucket-Pharo-API/actions/workflows/continuous.yml)
[![Coverage Status](https://coveralls.io/repos/github/Evref-BL/Bitbucket-Pharo-API/badge.svg?branch=ci-add-coverage)](https://coveralls.io/github/Evref-BL/Bitbucket-Pharo-API?branch=develop)

This is a Pharo client for the [Bitbucket Server REST API](https://docs.atlassian.com/bitbucket-server/rest/5.9.0/bitbucket-rest.html)

## Installation

```st
Metacello new
githubUser: 'Evref-BL' project: 'Bitbucket-Pharo-API' commitish: 'develop' path: 'src';
baseline: 'Bitbucket-Pharo-API';
baseline: 'BitbucketPharoAPI';
onConflict: [ :ex | ex useIncoming ];
load
```

0 comments on commit 67bd5d2

Please sign in to comment.