Skip to content

Commit c5eaf7d

Browse files
khamilowiczclaude
andcommitted
Migrate CI/CD from CircleCI to GitHub Actions
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2b9006d commit c5eaf7d

3 files changed

Lines changed: 39 additions & 34 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build_test:
10+
uses: membraneframework/membrane_actions/.github/workflows/build-test.yml@main
11+
12+
lint:
13+
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
14+
15+
test:
16+
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
workflow_dispatch:
8+
9+
jobs:
10+
build_test:
11+
uses: membraneframework/membrane_actions/.github/workflows/build-test.yml@main
12+
13+
lint:
14+
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
15+
16+
test:
17+
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
18+
19+
hex_publish:
20+
needs: [build_test, lint, test]
21+
uses: membraneframework/membrane_actions/.github/workflows/hex-publish.yml@main
22+
secrets:
23+
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

0 commit comments

Comments
 (0)