Skip to content

Commit 28e6b8f

Browse files
committed
Changing from CircleCI to GitHub Actions
1 parent dd3bff4 commit 28e6b8f

File tree

11 files changed

+1937
-2217
lines changed

11 files changed

+1937
-2217
lines changed

.circleci/config.yml

Lines changed: 0 additions & 213 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
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
Lines changed: 13 additions & 0 deletions
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
Lines changed: 9 additions & 0 deletions
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)