File: main.yml

package info (click to toggle)
bedtools 2.30.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 56,588 kB
  • sloc: ansic: 38,500; cpp: 29,738; sh: 7,955; makefile: 661; python: 235; javascript: 16
file content (19 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: CI

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Compile and test Bedtools
      run: make -j8 && make test
    - name: Compile static binary
      run:  make -j8 static
    - uses: actions/upload-artifact@v1
      with:
          name: bedtools.static
          path: bin/bedtools.static