Skip to content

feat: add tests to pipelines - #60

Open
tsuzukayama wants to merge 1 commit into
masterfrom
feat/github-pipelines
Open

feat: add tests to pipelines#60
tsuzukayama wants to merge 1 commit into
masterfrom
feat/github-pipelines

Conversation

@tsuzukayama

Copy link
Copy Markdown
Contributor

No description provided.

@tsuzukayama
tsuzukayama force-pushed the feat/github-pipelines branch 2 times, most recently from 712d14c to 54a48be Compare March 26, 2025 12:43
@tsuzukayama
tsuzukayama force-pushed the feat/github-pipelines branch from 54a48be to 982cac1 Compare March 26, 2025 13:08
@@ -0,0 +1,30 @@
name: Test
on: push

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd refine this to run only on pull requests or pushes targeted to main, otherwise, every pull to every repo will trigger (too much cost and runners competing)

on:
  pull_request:
    branches: [ main ]
  push:
    branches: [ main ]
    tags:
      - 'v*.*.*'

Comment on lines +21 to +27
git clone https://github.com/edenhill/librdkafka.git
cd librdkafka
./configure --prefix /usr
make
sudo make install
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig/
cd ..

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd create a make command for that and call here. Seems like a setup that must be done in the local development as well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants