SplFileObject #1283
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: .NET Core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore | |
run: dotnet restore | |
- name: Peachpie.Runtime.Tests | |
run: dotnet test ./src/Tests/Peachpie.Runtime.Tests --verbosity normal | |
- name: Peachpie.DiagnosticTests | |
run: dotnet test ./src/Tests/Peachpie.DiagnosticTests --verbosity normal | |
# - name: Peachpie.ScriptTests | |
# run: dotnet test ./src/Tests/Peachpie.ScriptTests --verbosity normal | |
- name: Build | |
run: dotnet build ./src/Peachpie.NET.Sdk/ -c Release --no-restore -p:VersionSuffix=ghaction${{github.run_number}} |