Skip to content

Commit

Permalink
Merge pull request #6 from curtisy1/develop
Browse files Browse the repository at this point in the history
curtisy1 authored Aug 1, 2021
2 parents f6ed1b4 + f1d4290 commit 5703f20
Showing 3 changed files with 24 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and test

on:
push:
branches: [ develop ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
Original file line number Diff line number Diff line change
@@ -17,7 +17,6 @@
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<Copyright>2021 curtisy1</Copyright>
<PackageProjectUrl>https://github.com/curtisy1/Localizati18n</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/curtisy1/Localizati18n/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/curtisy1/Localizati18n</RepositoryUrl>
</PropertyGroup>

Original file line number Diff line number Diff line change
@@ -11,7 +11,6 @@
<PackageVersion>1.0.2</PackageVersion>
<Copyright>2021 curtisy1</Copyright>
<PackageProjectUrl>https://github.com/curtisy1/Localizati18n</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/curtisy1/Localizati18n/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/curtisy1/Localizati18n</RepositoryUrl>
</PropertyGroup>

0 comments on commit 5703f20

Please sign in to comment.