Skip to content

Fix GH Actions by checking out the repo on every step #144

Fix GH Actions by checking out the repo on every step

Fix GH Actions by checking out the repo on every step #144

Workflow file for this run

name: Build Commit
on:
push:
paths:
- ".github/workflows/build-commit.yml"
- "benchmarks/**"
- "src/**"
- "tests/**"
- "HyperSharp.sln"
workflow_dispatch:
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
jobs:
build_commit:
name: Build Commit
runs-on: ubuntu-latest
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8
7
- name: Build Project
run: dotnet build
test_commit:
name: Test Commit
runs-on: ubuntu-latest
needs: build_commit
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8
7
- name: Test Project
run: dotnet test
document_commit:
name: Document Commit
runs-on: ubuntu-latest
needs: test_commit
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8
7
- name: Build Project
run: |
dotnet build
dotnet tool update -g docfx --prerelease
docfx docs/docfx.json
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/_site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
benchmark_commit:
name: Benchmark Commit
runs-on: ubuntu-latest
needs: test_commit
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8
7
- name: Benchmark Project
run: dotnet run -c Release --project benchmarks/HyperSharp.Benchmarks.csproj --framework net8.0
- name: Output Test Results
id: test-results
run: |
body="$(cat benchmark-results.md)"
delimiter="$(openssl rand -hex 8)"
echo "body<<$delimiter" >> $GITHUB_OUTPUT
echo "$body" >> $GITHUB_OUTPUT
echo "$delimiter" >> $GITHUB_OUTPUT
- name: Comment Results
uses: peter-evans/commit-comment@v2
with:
body: ${{ steps.test-results.outputs.body }}
token: ${{ secrets.GITHUB_TOKEN }}