Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/stable'
Browse files Browse the repository at this point in the history
To bring the CI improvements.
  • Loading branch information
knocte committed May 8, 2024
2 parents 2857266 + 9b1ee11 commit ccb1641
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/CI.yml
@@ -1,6 +1,14 @@
name: CI

on: [push, pull_request, workflow_dispatch]
on:
push:
pull_request:
workflow_dispatch:

# to execute once a day (more info see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule )
schedule:
- cron: "0 0 * * *"


# FIXME: figure out why we need to clean after make if we
# want 'make strict' target to really happen without
Expand All @@ -9,7 +17,7 @@ on: [push, pull_request, workflow_dispatch]

jobs:
macOS--dotnet6-and-mono:
runs-on: macOS-latest
runs-on: macOS-12
steps:
- uses: actions/checkout@v1
with:
Expand Down Expand Up @@ -42,7 +50,7 @@ jobs:
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
macOS--mono-only:
runs-on: macOS-latest
runs-on: macOS-12
steps:
- uses: actions/checkout@v1
with:
Expand All @@ -65,7 +73,7 @@ jobs:
run: make update-servers

macOS--dotnet6-only:
runs-on: macOS-latest
runs-on: macOS-12
steps:
- uses: actions/checkout@v1
with:
Expand Down

0 comments on commit ccb1641

Please sign in to comment.