forked from wannier-developers/wannier90
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wannier-developers#362 from jimustafa/gh-actions
run workflows explicitly on Ubuntu 20.04 with `numprocs=2`
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ on: | |
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: pre-commit/[email protected] | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
w90-binary-parallel: [ 'false', 'true' ] | ||
|
@@ -59,3 +59,11 @@ jobs: | |
./.github/workflows/run_tests.sh | ||
- name: compute coverage | ||
uses: codecov/codecov-action@v1 | ||
- name: archive test results | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: test-results_parallel=${{ matrix.w90-binary-parallel }} | ||
path: | | ||
test-suite/tests/test*/test.err* | ||
test-suite/tests/test*/test.out* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters