test #8
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
# This action is meant as a quick check to be run when pushing to | |
# branches on forks. This allows forks to test the build and unit | |
# tests automatically without opening a pull request. | |
name: Quick check | |
on: | |
push: | |
branches-ignore: | |
["main", "auto", "try", "try-*", "dependabot/**"] | |
jobs: | |
build-linux: | |
name: Linux | |
if: github.repository != 'servo/servo' || github.event_name == 'workflow_dispatch' | |
uses: ./.github/workflows/linux.yml | |
with: | |
unit-tests: true |