Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 0 additions & 66 deletions .github/workflows/build-predictor.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/build.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/cache-retention.yml

This file was deleted.

46 changes: 46 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# CI Build and Test of the IssueLabeler solution
name: "CI Build"

on:
push:
branches:
- main
paths:
- ".github/workflows/ci-*.yml"
- "IssueLabeler/**"

pull_request:
branches:
- main

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: "Set up the .NET SDK"
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
with:
dotnet-version: 9.0.x

- name: "Build the IssueLabeler solution"
run: dotnet build IssueLabeler/ --configuration Release

test:
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: "Set up the .NET SDK"
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
with:
dotnet-version: 9.0.x

- name: "Run tests from the IssueLabeler solution"
run: dotnet test IssueLabeler/
122 changes: 0 additions & 122 deletions .github/workflows/download-issues.yml

This file was deleted.

Loading