Skip to content

Update test.yml

Update test.yml #12

Workflow file for this run

name: Testing the action
on:
push:
branches: [main]
workflow_dispatch:
jobs:
updating-badge-files:
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: updating-badge-files
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Commiting
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'chart badge updated'