Skip to content

jstritch/setup-git-annex

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI Status ko-fi Liberapay Patreon

setup-git-annex

Installs git-annex on Linux, macOS, or Windows. git-annex is an integrated alternative to storing large files in Git.

Example

The workflow snippet shown below installs git-annex on Linux, macOS, and Windows. Setting fail-fast to false allows other jobs in the matrix to continue if any job in the matrix fails.

Once installed, the help command is invoked to demonstrate git-annex is available from the command line.

jobs:
  test:

    strategy:
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
      fail-fast: false

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v4
      - uses: jstritch/setup-git-annex@v1
      - run: git annex help