Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,8 @@ jobs:
- mac
- windows
uses: ./.github/workflows/perf.yml

pages:
needs:
- perf
uses: ./.github/workflows/pages.yml
8 changes: 6 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Pages

on:
push:
pull_request:
workflow_call:
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -110,6 +109,11 @@ jobs:
with:
name: scoreboard
path: ./scoreboard/
- name: Download coverage artifact
uses: actions/download-artifact@v4
with:
name: cov-report
path: ./coverage/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Parallel Programming Course
Welcome to the Parallel Programming Course! For more detailed documentation and resources, please visit documentation pages: [en](https://learning-process.github.io/parallel_programming_course/en/), [ru](https://learning-process.github.io/parallel_programming_course/ru/).
Course scoreboard is available [here](https://learning-process.github.io/parallel_programming_course/scoreboard/)
Coverage report is available [here](https://learning-process.github.io/parallel_programming_course/coverage/)

### Parallel programming technologies:
The following parallel programming technologies are considered in practice:
Expand Down
Loading