Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tenteroring committed Apr 27, 2024
1 parent b9cca46 commit 63478bd
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build(Windows)

on:
push:
branches: [ master, win ]
paths-ignore: '**.md'
pull_request:
branches: [ master ]
paths-ignore: '**.md'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- uses: microsoft/setup-msbuild@v2

- uses: crazy-max/ghaction-chocolatey@v3
with:
args: install cmake eigen

- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'

- run: pip install .

- run: pytest src/test/python_test.py

0 comments on commit 63478bd

Please sign in to comment.