Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor GitHub Actions workflows to import logic #190

Merged
merged 1 commit into from Sep 28, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
69 changes: 0 additions & 69 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

102 changes: 0 additions & 102 deletions .github/workflows/lint-and-build-code.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/lint-and-build-using-make.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/lint-and-build.yml
@@ -0,0 +1,24 @@
# Copyright 2022 Adam Chalkley
#
# https://github.com/atc0005/go-teams-notify
#
# Licensed under the MIT License. See LICENSE file in the project root for
# full license information.

name: Lint and Build

# Run builds for Pull Requests (new, updated)
# `synchronized` seems to equate to pushing new commits to a linked branch
# (whether force-pushed or not)
on:
pull_request:
types: [opened, synchronize]

jobs:
lint_and_build_using_ci_matrix:
name: CI matrix
uses: atc0005/shared-project-resources/.github/workflows/lint-and-build-using-ci-matrix.yml@master

lint_and_build_using_makefile:
name: Makefile
uses: atc0005/shared-project-resources/.github/workflows/lint-and-build-using-make.yml@master
62 changes: 0 additions & 62 deletions .github/workflows/lint-and-test-only.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/lint-docs.yml

This file was deleted.