Skip to content

CI/CD includes to be used by other projects. This project is holding the common test, linter etc jobs.

License

Notifications You must be signed in to change notification settings

WheeskyJack/cicd-includes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

cicd-includes

CI/CD includes to be used by other projects. This project is holding the common test, linter etc jobs.

Currently, it supports golang test and lint.

Usage

sample example on how to call this reusable workflow in your repository :

you can add similar yml as shown below in your repository's .github/workflows directory.

name: golang lint and test

on:
  push:
    branches:
      - master
      - main
  pull_request:
    branches:
      - master
      - main

permissions:
  contents: read
  # Optional: allow read access to pull request. Use with `only-new-issues` option.
  # pull-requests: read

jobs:
  Lint-App:
    uses: WheeskyJack/cicd-includes/.github/workflows/[email protected]
  Test-App:
    uses: WheeskyJack/cicd-includes/.github/workflows/[email protected]

Contributing

Contributions are welcome! Please feel free to create an issue and submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

CI/CD includes to be used by other projects. This project is holding the common test, linter etc jobs.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published