Skip to content

Commit

Permalink
change ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
zsluedem committed Jan 2, 2023
1 parent 108c3ab commit 469b93e
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
on: [push]
on:
push:
branches:
- main
pull_request:

name: CI

jobs:
build_and_test:
name: Rust project
name: Rust Abstract Account Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,6 +19,15 @@ jobs:
- name: Setup
run: |
make fetch-thirdparty
- name: Install solc
run: |
sudo add-apt-repository ppa:ethereum/ethereum
sudo add-apt-repository ppa:ethereum/ethereum-dev
sudo apt-get update
sudo apt-get install solc
- name: Build
run: |
cargo build
- name: Lint
run: |
make lint
Expand Down

0 comments on commit 469b93e

Please sign in to comment.