Skip to content

Commit

Permalink
ci: install cargo make
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Oct 1, 2024
1 parent 59ebf2c commit 1c0a860
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/scheduled_lints.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
on:
schedule:
- cron: '0 8 * * 1-5'
- cron: '30 8 * * 1-5'
name: Scheduled checks
jobs:
tests:
Expand All @@ -17,6 +17,26 @@ jobs:
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :
- name: Clone the repository
uses: actions/checkout@v4
- name: Cargo Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ matrix.profile }}-cargo-test
- name: Setup Node and cache
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
cache-dependency-path: |
etc/eth-contracts
etc/tests/uniswap
- name: Install cargo-make
run: cargo +stable install cargo-make
- name: Build actual neard-sandbox
run: scripts/build-neard-sandbox.sh ${{ matrix.profile }}
- name: Test ${{ matrix.profile }}
Expand Down

0 comments on commit 1c0a860

Please sign in to comment.