Skip to content

Commit

Permalink
chore: fix misc stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Jan 9, 2025
1 parent 1d320a9 commit 01edd13
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ jobs:
matrix:
project:
- Lip.CLI
runtime:
- linux-arm64
- linux-x64
- osx-arm64
- osx-x64
- win-arm64
- win-x64
include:
- runtime: linux-arm64
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -116,16 +123,7 @@ jobs:
dotnet-version: ${{ env.DOTNET_VERSION }}

- run: |
dotnet restore ${{ matrix.project }}
- run: >
dotnet build ${{ matrix.project }}
-c Release
--no-restore
- run: >
dotnet test ${{ matrix.project }}
--no-build
check-style:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion Lip.Tests/ConditionWaiterTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Threading;
using System.Threading;

namespace Lip.Tests;

Expand Down
2 changes: 1 addition & 1 deletion Lip.Tests/Lip.InitTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.IO.Abstractions.TestingHelpers;
using System.IO.Abstractions.TestingHelpers;
using Moq;

namespace Lip.Tests;
Expand Down
2 changes: 1 addition & 1 deletion Lip/ConditionWaiter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Diagnostics;
using System.Diagnostics;

namespace Lip;

Expand Down
2 changes: 1 addition & 1 deletion Lip/Lip.Init.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Text;
using System.Text;

namespace Lip;

Expand Down
2 changes: 1 addition & 1 deletion Lip/Lip.UserInteraction.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Lip;
namespace Lip;

public partial class Lip
{
Expand Down
2 changes: 1 addition & 1 deletion Lip/Lip.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.IO.Abstractions;
using System.IO.Abstractions;

namespace Lip;

Expand Down

0 comments on commit 01edd13

Please sign in to comment.