From 524d3c4f95edb84477a493a2065afd2eb052b5fc Mon Sep 17 00:00:00 2001 From: "Micah D. Gale" Date: Thu, 17 Oct 2024 08:09:24 -0500 Subject: [PATCH] Started an archive test. --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 630f96d9..3e5ff621 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -93,6 +93,22 @@ jobs: with: file: coverage.xml github-token: ${{ secrets.github_token }} + + test-archive: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-tags: true + - name: Git-archive-all + uses: qmonnet/git-archive-all-action@v1 + with: + output-files: montepy.tar.gz + - name: delete git tree + run: rm -rf .git + - name: open tar ball + run: tar xzf montepy.tar.gz + doc-test: