Skip to content

Commit

Permalink
FSharp - Fix test run for multiple years
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoVIII committed Jul 26, 2024
1 parent e510e74 commit 45e1bf1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
8 changes: 5 additions & 3 deletions .github/workflows/fsharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
find . -type d -name "fsharp" -exec find {} -name "test-all.sh" \; | while read testScript
do
echo "Running tests in $(dirname "$testScript")"
cd "$(dirname "$testScript")"
dotnet tool restore
./$(basename "$testScript")
(
cd "$(dirname "$testScript")" || exit
dotnet tool restore
./$(basename "$testScript")
)
done

0 comments on commit 45e1bf1

Please sign in to comment.