Skip to content

Update test.yml

Update test.yml #9

Workflow file for this run

name: Testing the action
on:
push:
branches: [main]
workflow_dispatch:
jobs:
Test:
strategy:
matrix:
package: [fastapi, requests, django, boto]
runs-on: ubuntu-latest
name: Testing the action
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run action
uses: ./
with:
package_name: ${{ matrix.package }}
file_name: ${{ matrix.package }}_badge.svg
badge_color: '#03fc6f'
Commit:
runs-on: ubuntu-latest
needs: Test
steps:
- name: Making the commit
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
pull: ''
message: 'chart badge updated'