chore(deps): update plugin com.google.devtools.ksp to v2.0.21-1.0.28 #3848
Workflow file for this run
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: Run Tests | |
on: | |
push: | |
branches: [v2] | |
pull_request: | |
branches: [v2] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Mise | |
uses: jdx/mise-action@v2 | |
- name: Setup dependencies | |
run: just deps | |
- name: Run tests | |
run: just test | |
- uses: actions/upload-artifact@v4 | |
if: ${{ failure() }} | |
with: | |
name: code | |
path: /home/runner/work/odict |