Skip to content

Commit

Permalink
Update CI (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Nov 23, 2024
1 parent 9ea1c0b commit 4cd0af1
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 1,282 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/README.md

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

defaults:
run:
shell: bash

env:
RUSTFLAGS: --deny warnings

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0

- uses: Swatinem/rust-cache@v2

- name: Unit Tests
run: cargo test --all

- name: Integration Tests
env:
BITCOINVERSION: 0.21.0
run: ./contrib/integration_test.sh
107 changes: 0 additions & 107 deletions .github/workflows/rust.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
target
Cargo.lock
/Cargo.lock
/target
Loading

0 comments on commit 4cd0af1

Please sign in to comment.