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

Remove delivery workflow #147

Merged
merged 1 commit into from
Dec 27, 2023
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
48 changes: 16 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,32 @@ name: ci
"on":
pull_request:
push:
branches: [master]
branches: [main]

jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run Chef Delivery
uses: actionshub/chef-delivery@main
env: { CHEF_LICENSE: accept-no-persist }

yamllint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run yaml Lint
uses: actionshub/yamllint@main

mdl:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run Markdown Lint
uses: actionshub/markdownlint@main
lint-unit:
uses: sous-chefs/.github/.github/workflows/[email protected]
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write

integration:
needs: [mdl, yamllint, delivery]
needs: "lint-unit"
runs-on: ubuntu-latest
strategy:
matrix:
os:
- amazonlinux-2
- centos-7
- centos-8
- debian-9
- debian-10
- amazonlinux-2023
- centos-stream-8
- centos-stream-9
- debian-11
- debian-12
- fedora-latest
- ubuntu-2004
- ubuntu-2104
- ubuntu-2204
suite: ["server"]
fail-fast: false

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

Fix GitHub Actions workflows

## 2.0.8 - *2023-09-11*

## 2.0.7 - *2023-06-08*
Expand Down