From 72b8b270cf718b79374c68e45a061de8ccaea416 Mon Sep 17 00:00:00 2001 From: Michael Barroco Date: Tue, 6 Dec 2022 16:00:57 +0100 Subject: [PATCH] [ci] Check that the project can be successfully cloned in all environments (#918) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [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 --- .github/workflows/dev-checks.yml | 28 +++++++++++++++++++++++++ Makefile | 2 +- interfaces/aux_/{aux.yaml => aux_.yaml} | 0 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/dev-checks.yml rename interfaces/aux_/{aux.yaml => aux_.yaml} (100%) diff --git a/.github/workflows/dev-checks.yml b/.github/workflows/dev-checks.yml new file mode 100644 index 0000000000..a7a5e7abc5 --- /dev/null +++ b/.github/workflows/dev-checks.yml @@ -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." \ No newline at end of file diff --git a/Makefile b/Makefile index 1cc357ef81..3bc47ccca1 100644 --- a/Makefile +++ b/Makefile @@ -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" \ diff --git a/interfaces/aux_/aux.yaml b/interfaces/aux_/aux_.yaml similarity index 100% rename from interfaces/aux_/aux.yaml rename to interfaces/aux_/aux_.yaml