Skip to content

Commit

Permalink
Use GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sommer committed Nov 18, 2024
1 parent 96a278c commit e3bd253
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 227 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build FMPy

on:
push:
branches: [ main ]
tags: [ 'v*' ]
pull_request:
branches: [ main ]

jobs:
build:
strategy:
matrix:
include:
- name: x86_64-windows
image: windows-2022
arch: x86_64
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: which python
227 changes: 0 additions & 227 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit e3bd253

Please sign in to comment.