d/dh_package_notes.1: Fix typos #46
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
--- | |
# SPDX-License-Identifier: CC0-1.0 | |
# vi: ts=2 sw=2 et: | |
name: Run tests | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt -y update && sudo apt -y install python3-pyelftools python3-pytest | |
- name: Run tests | |
run: make check |