Skip to content

Commit

Permalink
Windows CI
Browse files Browse the repository at this point in the history
Signed-off-by: Cédrik Fuoco <[email protected]>
  • Loading branch information
cedrik-fuoco-adsk committed Aug 26, 2024
1 parent 39eace1 commit f88a948
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: OpenRV

on:
push:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml

pull_request:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml

jobs:
windows:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Set up Perl
run: |
choco install strawberryperl
- name: perl -V
run: perl -V

0 comments on commit f88a948

Please sign in to comment.