Skip to content

chore(deps): bump depends #39

chore(deps): bump depends

chore(deps): bump depends #39

Workflow file for this run

name: unittest
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
unittest:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and run dev container task
uses: devcontainers/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
imageName: ghcr.io/${{ github.repository }}-devcontainer
cacheFrom: ghcr.io/${{ github.repository }}-devcontainer
push: filter
refFilterForPush: |
refs/heads/master
refs/heads/main
runCmd: |
set -euxo pipefail
task cover
cat /tmp/coverage.txt >> $GITHUB_STEP_SUMMARY