File: tests.yml

package info (click to toggle)
package-notes 0.17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 218; perl: 97; ansic: 41; makefile: 29
file content (25 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
# 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