Skip to content

Commit

Permalink
Workflows naming / wording
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Apr 11, 2024
1 parent ace8393 commit c4c5372
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: Test the contracts
name: Contracts Tests

# This workflow:
# - Runs the Foundry tests
# - Checks for console imports in the contracts
# - Runs the Hardhat tests
# - Generates a coverage report (currently disabled)

defaults:
run:
Expand Down Expand Up @@ -46,7 +52,7 @@ jobs:
id: test

console-logs:
name: Check we didn’t forget to remove console imports
name: Checking for console imports
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -180,4 +186,3 @@ jobs:
base-path: ./contracts/
path-to-lcov: ./contracts/lcov_merged.info
debug: true

Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: Deploy the contracts + app
name: Testnet Deployment

# This workflow:
# - Deploys the contracts to the Liquity v2 Testnet (currently disabled)
# - Deploys the app to Vercel (only for the main branch, not PRs)

on:
push:
Expand All @@ -22,7 +26,7 @@ concurrency:

jobs:
deploy-contracts:
name: Deploy contracts to the Liquity v2 Testnet
name: Deploying contracts
if: false # Disable contracts deployment for now
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -64,7 +68,7 @@ jobs:
path: ./contracts/deployment-context-latest.json

deploy-app:
name: Deploy the Liquity v2 app to Vercel
name: Deploying app
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
Expand Down

0 comments on commit c4c5372

Please sign in to comment.