Skip to content

Commit 313b285

Browse files
authored
Merge pull request #17 from membraneframework/migrate-to-github-actions
Migrate CI from CircleCI to GitHub Actions
2 parents b43bc1f + 14fd64a commit 313b285

4 files changed

Lines changed: 46 additions & 37 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 30 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+
test:
13+
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
14+
15+
lint:
16+
uses: membraneframework/membrane_actions/.github/workflows/lint.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+
test:
14+
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
15+
16+
lint:
17+
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
18+
19+
hex_publish:
20+
needs: [build_test, test, lint]
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)