Skip to content

GitHub actions fails because of spanish characters #26505

Answered by Yanjingzhu
oliveriod asked this question in Actions
Discussion options

You must be logged in to vote

Hi @oliveriod , 

What’s the operating system of your local work machine? Windows or Ubuntu?  

In your workflow , you choose ubuntu runnner to run your job. 

I tested using windows runner, it could build the project successfully. 

Please try  runs-on: windows-latest  . 

name: .NET Core

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:

runs-on: windows-latest steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants