Bootstrap Peers Implementation #1328
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Project checks | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
check-git-dependencies: | |
name: Check git dependencies | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Dependencies | |
run: ./scripts/ci/check-git-dependencies.sh | |
check-changelogs: | |
name: Check changelogs | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Install dependencies | |
run: sudo apt install -y fd-find | |
- uses: actions/checkout@v4 | |
- name: git fetch | |
run: git fetch origin master:master | |
- name: Check changelogs | |
run: ./scripts/ci/check-changelogs.sh | |
check-cabal-files: | |
name: Check cabal files | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Install dependencies | |
run: sudo apt install -y fd-find | |
- name: Install Haskell | |
uses: input-output-hk/setup-haskell@v1 | |
id: setup-haskell | |
with: | |
cabal-version: "3.10.1.0" | |
- uses: actions/checkout@v4 | |
- name: Check cabal files | |
run: ./scripts/ci/check-cabal-files.sh | |