-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Check that the project can be successfully cloned in all environ…
…ments (#918) * [ci] Check that the project can be successfully clone in all environments * Proper labels * rename aux.yaml -> aux_.yaml * Proper runner version * Rename test suite * Improve names Co-authored-by: Mickaël Misbach <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Developers environment checks | ||
on: | ||
pull_request: # All | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
windows: | ||
name: Clone on Windows | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout on Windows | ||
run: echo "Project successfully cloned on ${{ runner.os }}. See `Set up Job` stage for more details about the Runner." | ||
macos: | ||
name: Clone on Mac | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout on Mac | ||
run: echo "Project successfully cloned on ${{ runner.os }}. See `Set up Job` stage for more details about the Runner." | ||
ubuntu: | ||
name: Clone on Ubuntu | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout on Ubuntu | ||
run: echo "Project successfully cloned on ${{ runner.os }}. See `Set up Job` stage for more details about the Runner." |
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
File renamed without changes.