Skip to content

Commit

Permalink
Update GitHub workflows.
Browse files Browse the repository at this point in the history
Remove Caching on build actions since it causing MacOS build to fail randomly.
Update issue and pull request template.
  • Loading branch information
yazeedobaid committed Nov 14, 2022
1 parent ada1877 commit d5fae3f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Please provide a description of any known workarounds.
* Branch
* .NET Runtime, CoreCLR or Mono Version
* Indications of severity
* Version of FAKE (4.X, 5.X)
* Version of FAKE (4.X, 5.X, 6.x)
* (if performance issue) Performance information, links to performance testing scripts
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Feel free to open the PR and ask for help
> Note: Consider using the `CreateProcess` API which can be tested more easily, see https://github.com/fsharp/FAKE/pull/2131/files#diff-4fb4a77e110fbbe8210205dfe022389b for an example (the changes in the `DotNet.Testing.NUnit` module)
- [ ] boy scout rule: "leave the code behind in a better state than you found it" (fix warnings, obsolete members or code-style in the places you worked in)
- [ ] (if new module) the module has been linked from the "Modules" menu, edit `help/templates/template.cshtml`, linking to the API-reference is fine.
- [ ] (if new module) the module is in the correct namespace
- [ ] (if new module) the module has been linked from the "side navigation" menu, edit `docs/data.json`.
- [ ] (if new module) the module is in the correct namespace.
- [ ] (if new module) the module is added to Fake.sln (`dotnet sln Fake.sln add src/app/Fake.*/Fake.*.fsproj`)
- [ ] Fake [API guideline](https://fake.build/guide/contributing.html#API-Design-Guidelines) is honored
6 changes: 0 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.101'
- uses: actions/cache@v2
with:
path: ~/.nuget/packages
key: ${{ matrix.os }}-nuget-${{ hashFiles('**/paket.lock') }}
restore-keys: |
${{ matrix.os }}-nuget
- name: Restore dotnet tools
run: dotnet tool restore
- name: remove current fake runner tool
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.101'
- uses: actions/cache@v2
with:
path: ~/.nuget/packages
key: windows-latest-nuget-${{ hashFiles('**/paket.lock') }}
restore-keys: |
windows-latest-nuget
- name: Restore dotnet tools
run: dotnet tool restore
- name: remove current fake runner tool
Expand Down

0 comments on commit d5fae3f

Please sign in to comment.