Skip to content

Commit

Permalink
githib workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
koct9i committed Jan 1, 2025
1 parent 25545a5 commit 348e062
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 7 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
build:
# https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job
- os: ubuntu-latest

- os: ubuntu-latest
image: ubuntu:20.04
- os: ubuntu-latest
image: ubuntu:22.04
- os: ubuntu-latest
image: ubuntu:24.04

- os: ubuntu-latest
image: fedora:40
- os: ubuntu-latest
image: fedora:41
- os: ubuntu-latest
image: fedora:42

- os: ubuntu-latest
image: debian:11
- os: ubuntu-latest
image: debian:12

- os: macos-13
- os: macos-14
- os: macos-15

runs-on: ${{ matrix.build.os }}

container: ${{ matrix.build.image }}

steps:
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v4

- name: dependencies
run: apt-get install -y build-essential

- name: build
run: make

- name: test
run: make test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 348e062

Please sign in to comment.