Skip to content

Commit

Permalink
[PR] Release 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyalehchylin committed Apr 29, 2023
2 parents 2f3b468 + 9f420f0 commit 40fe800
Show file tree
Hide file tree
Showing 137 changed files with 6,036 additions and 849 deletions.
14 changes: 2 additions & 12 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,7 @@ In this case GitHub will ignore `docs/` directory contribution (500,000+ lines)
Before submitting pull request you should choose the reviewer.
The following checks should pass:

- Bitrise ci check (more details [here](../pages/articles/continuous-integration.md))
- [GitHub Actions](https://github.com/ilyalehchylin/educats-xamarin/actions) CI/CD
- Reviewer check

Name conventions for pull request commits:

```
[PR] [GH-Associated_issue_number] Description
```

Examples:

```
[PR] [GH-123] Fixed app settings crash
```
Name conventions for pull request titles are the same as for [commits](#commits).
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories:
- title: 'New Features'
label: 'feature'
- title: 'Bug Fixes'
label: 'bugfix'
label: 'bug'
- title: 'Other Changes'
label: 'update'
change-template: '- $TITLE (#$NUMBER)'
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.5.2

- name: Unit-Tests Build + Coverlet
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
COVERAGE_INFO_FILENAME: coverage.info

- name: Codecov Deploy
uses: codecov/codecov-action@v3.1.0
uses: codecov/codecov-action@v3.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ env.COVERAGE_COVERAGE_FILE_PATH }}
Expand All @@ -40,9 +40,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.5.2

- name: NuGet Cache
uses: actions/cache@v3.3.1
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore NuGet packages
- name: NuGet Restore
run: nuget restore $SOLUTION_PATH
env:
SOLUTION_PATH: ./source/EduCATS.sln
Expand Down
Loading

0 comments on commit 40fe800

Please sign in to comment.