Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielathome19 committed Jan 1, 2024
2 parents 6acaa80 + 31796ce commit 770b21a
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 121 deletions.
116 changes: 0 additions & 116 deletions .github/workflows/dotnet-desktop.yml

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/nuget_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI/CT/CD

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'

- name: Copy README to project directory
run: cp README.md "Chunk List/"

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Run Unit Tests
run: dotnet test --no-restore --verbosity normal

- name: Pack
run: dotnet pack --configuration Release --no-build -o out

- name: Push to NuGet
run: dotnet nuget push out/*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
4 changes: 2 additions & 2 deletions Chunk List/Chunk List.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<ItemGroup>
<None Remove="App.config" />
<None Remove="Properties\**" />
<None Remove="Presentation\Chunk List-review01092019.pdf" />
<None Remove="Presentation\Chunk List.pdf" />
<None Remove="Presentation\Chunk List.docx" />
<None Remove="Presentation\Chunk List.pptx" />
</ItemGroup>
Expand All @@ -35,4 +35,4 @@
<EmbeddedResource Remove="Properties\**" />
</ItemGroup>

</Project>
</Project>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To find out more, check out the provided research paper:
* /Chunk List/Presentation/"Chunk List.pdf" (DOI: [10.48550/arxiv.2101.00172](https://doi.org/10.48550/arxiv.2101.00172))

# Usage
The __Presentation__ folder contains a full presentation and research paper in PDF and XPS formats, containing the following information:
The __Presentation__ folder contains a full presentation and research paper in PDF format, containing the following information:
* What is a chunk list?
* Where is a chunk list used?
* Implementation details (construction, basic methods)
Expand All @@ -15,9 +15,9 @@ The __Presentation__ folder contains a full presentation and research paper in P

Program files are kept within the _master_ branch.

A full implementation of the class is kept within the __ChunkList.cs__ file in the namespace __Chunk_List__, to be included within the program.
A full implementation of the class is kept within the __ChunkList.cs__ file in the namespace __ChunkList__, to be included within the program.

The __Program.cs__ file contains a benchmark test for comparison between an ArrayList (List<T>) and Chunk List.
The __Unit Test/UnitTest.cs__ file contains a benchmark test for comparison between an ArrayList (List<T>) and Chunk List.

# Bugs/Features
Bugs are tracked using the GitHub Issue Tracker.
Expand Down

0 comments on commit 770b21a

Please sign in to comment.