Skip to content

Commit

Permalink
Require deps for CI wofklow runners
Browse files Browse the repository at this point in the history
  • Loading branch information
cowuake committed Oct 10, 2024
1 parent 9c1b38f commit 7a73510
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- '.github/workflows/ci.yml'
- 'src/**'

env:
APP_NAME: ${{ vars.APP_NAME }}
Expand All @@ -17,6 +18,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up build and runtime deps
run: |
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y curl docker docker-compose
- name: Checkout code
uses: actions/checkout@v4

Expand Down

0 comments on commit 7a73510

Please sign in to comment.