Skip to content

Commit

Permalink
Merge pull request #2 from sweatco/feat/actions-and-libs
Browse files Browse the repository at this point in the history
Added common libs and CI workflows
  • Loading branch information
VladasZ authored Oct 26, 2023
2 parents bb70fe9 + 0d94e78 commit d5e4aa6
Show file tree
Hide file tree
Showing 29 changed files with 1,049 additions and 846 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Push

on:
push:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:

build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Actor
run: echo ${{ github.actor }}

- name: Build
run: make build-in-docker

- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: sweat-claim
path: res/sweat_claim.wasm

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Lint
run: make lint

integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Integration tests
run: make integration

push:
needs: [ build, lint, integration-tests ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

- name: Download binary
uses: actions/download-artifact@v3
with:
name: sweat-claim
path: res/

- name: Commit & Push changes
if: ${{ github.actor != 'sweatcoin' }}
uses: actions-js/push@master
with:
message: Updated binary
branch: main
github_token: ${{ secrets.ACTIONS_TOKEN }}
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on:
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:

build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build
run: make build

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Lint
run: make lint

integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Integration tests
run: make integration
Loading

0 comments on commit d5e4aa6

Please sign in to comment.