From 8353a1660b5a7f080374df9b04831deb6f12658b Mon Sep 17 00:00:00 2001 From: Thog Date: Sat, 15 Feb 2020 14:46:24 +0100 Subject: [PATCH] Remove Travis configuration and update build action to use v2 of checkout --- .github/workflows/build.yml | 2 +- .travis.yml | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cca6c60806..86419b577b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: environment: ['Debug', 'Release', 'Profile Debug', 'Profile Release'] name: ${{ matrix.environment }} build (Dotnet ${{ matrix.dotnet }}, OS ${{ matrix.os }}) steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Setup dotnet uses: actions/setup-dotnet@v1 with: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9c6ca236bf..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -os: osx -language: csharp -solution: Ryujinx.sln -mono: none -dotnet: 2.0.0 -script: - - dotnet restore - - dotnet build - - cd Ryujinx.Tests && dotnet test