Skip to content

Commit

Permalink
[ci] Check that the project can be successfully cloned in all environ…
Browse files Browse the repository at this point in the history
…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
barroco and mickmis authored Dec 6, 2022
1 parent 2e2cd6d commit 72b8b27
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/dev-checks.yml
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."
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ openapi-to-go-server:

dss_apis: openapi-to-go-server
docker container run -u "$(USER_GROUP)" -it \
-v "$(CURDIR)/interfaces/aux_/aux.yaml:/resources/auxv1.yaml" \
-v "$(CURDIR)/interfaces/aux_/aux_.yaml:/resources/auxv1.yaml" \
-v "$(CURDIR)/interfaces/astm-utm/Protocol/utm.yaml:/resources/scdv1.yaml" \
-v "$(CURDIR)/interfaces/rid/v1/remoteid/augmented.yaml:/resources/ridv1.yaml" \
-v "$(CURDIR)/interfaces/rid/v2/remoteid/updated.yaml:/resources/ridv2.yaml" \
Expand Down
File renamed without changes.

0 comments on commit 72b8b27

Please sign in to comment.