Skip to content

Commit

Permalink
[CI] do not run windows / OSX for now, run on tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindaar committed Jul 26, 2024
1 parent a4688f7 commit 7cd7747
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- '.github/workflows/ci.yml'
branches:
- 'master'
tags:
- 'v*' # Ensure it runs on tag push as well
pull_request:
paths:
- 'tests/**'
Expand All @@ -29,8 +31,8 @@ jobs:
- 'devel'
os:
- ubuntu-latest
- windows-latest
- macOS-latest
#- windows-latest
#- macOS-latest
name: '${{ matrix.nim }} (${{ matrix.os }})'
steps:
- name: Checkout
Expand Down Expand Up @@ -103,7 +105,8 @@ jobs:
path: xrayAttenuation/examples/calc_gas_mixtures

release:
runs-on: ${{ matrix.os }}
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
Expand Down

0 comments on commit 7cd7747

Please sign in to comment.