File: fedora.yml

package info (click to toggle)
ruby-byebug 13.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,288 kB
  • sloc: ruby: 9,013; ansic: 1,692; makefile: 4; sh: 4
file content (33 lines) | stat: -rw-r--r-- 583 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
24
25
26
27
28
29
30
31
32
33
---

name: fedora

on:
  pull_request:

  push:
    branches:
      - main

jobs:
  install_and_run:
    container: fedora:42

    runs-on: ubuntu-24.04

    steps:
      - uses: actions/checkout@v5

      - name: Install OS dependencies
        run: dnf install -y ruby ruby-devel make gcc redhat-rpm-config libyaml-devel

      - name: Install development dependencies
        run: bundle install

      - name: Install byebug
        run: bin/rake install

      - name: Run byebug
        run: .bundle/ruby/3.4.0/bin/byebug -h
        env:
          GEM_HOME: .bundle/ruby/3.4.0