From a68cebb34b2d6ff6b943c885c75d73b0ffcf4cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drik=20Fuoco?= Date: Mon, 26 Aug 2024 12:51:17 -0400 Subject: [PATCH] Windows CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Cédrik Fuoco --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..c90ee5f0f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: OpenRV + +on: + push: + branches: + - 'feature/**' + paths: + - .github/workflows/ci.yml + + pull_request: + branches: + - 'feature/**' + paths: + - .github/workflows/ci.yml + +jobs: + build-windows: + runs-on: windows-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + with: + submodules: recursive + - run: echo "$(cat rvcmds.sh)" \ No newline at end of file