Skip to content

Fix a bug in the CI workflow #488

Fix a bug in the CI workflow

Fix a bug in the CI workflow #488

Workflow file for this run

name: Continuous integration
on:
pull_request:
push:
branches:
- main
jobs:
ci:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v3
with:
username: stephanmisc
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: stepchowfun/toast/.github/actions/toast@main
with:
tasks: build check
docker_repo: stephanmisc/toast
write_remote_cache: ${{ github.event_name == 'push' }}