File: test.yml

package info (click to toggle)
enca 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,948 kB
  • sloc: ansic: 10,297; sh: 5,858; xml: 2,132; makefile: 700; perl: 261
file content (23 lines) | stat: -rw-r--r-- 530 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Tests

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - name: Update apt
        run: sudo apt-get update
      - name: Install apt deps
        run: sudo apt-get install -y librecode-dev
      - name: Configure build
        run: ./configure
      - name: Build
        run: make -j4
      - name: Test
        run: make test
      - name: Test log
        run: cat test/test-suite.log
      - name: Install
        run: make install DESTDIR=/tmp/inst