add Font Awesome 6 ([#297](https://github.com/rendercv/rendercv/issue… #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
# GitHub events that triggers the workflow: | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_call: # to make the workflow triggerable from other workflows (publish-to-pypi.yaml) | |
workflow_dispatch: # to make the workflow triggerable manually | |
# The workflow: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Hatch | |
uses: pypa/hatch@install | |
- name: Test | |
run: hatch run test.py3.13:test |