Skip to content

Commit 756d8f0

Browse files
committed
Changing from CircleCI to GitHub Actions
1 parent 786939b commit 756d8f0

File tree

13 files changed

+14970
-10302
lines changed

13 files changed

+14970
-10302
lines changed

.circleci/config.yml

-201
This file was deleted.

.github/actions/setup-rust/action.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Setup Rust
2+
description: Sets up Rust
3+
runs:
4+
using: "composite"
5+
steps:
6+
- uses: actions/cache@v4
7+
with:
8+
path: |
9+
~/.cargo/registry
10+
~/.cargo/git
11+
target
12+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
13+
14+
- name: Initialize Rustup
15+
shell: bash
16+
run: |
17+
rustup show

.github/actions/setup-yarn/action.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Setup Yarn
2+
description: Sets up Yarn
3+
runs:
4+
using: "composite"
5+
steps:
6+
- uses: actions/setup-node@v4
7+
with:
8+
cache: 'yarn'
9+
10+
- name: yarn install
11+
shell: bash
12+
run: |
13+
yarn install --immutable --check-cache

.github/actions/use-build/action.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Use build
2+
description: Uses the build artifacts
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Download build
7+
uses: actions/download-artifact@v4
8+
with:
9+
name: build

0 commit comments

Comments
 (0)