You've already forked httpie-cli
							
							
				mirror of
				https://github.com/httpie/cli.git
				synced 2025-10-30 23:47:52 +02:00 
			
		
		
		
	* Remove redundant systems * Drop it from the docs * Remove the packaging info about the legacy systems * Fix some typos * Drop support for python 3.6
		
			
				
	
	
		
			26 lines
		
	
	
		
			663 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			663 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| on:
 | |
|   pull_request:
 | |
|     paths:
 | |
|       - .github/workflows/test-package-linux-snap.yml
 | |
|       - snapcraft.yaml
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   snap:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v2
 | |
|       - name: Build
 | |
|         uses: snapcore/action-build@v1
 | |
|         id: snapcraft
 | |
|       - name: Install
 | |
|         run: sudo snap install --dangerous ${{ steps.snapcraft.outputs.snap }}
 | |
|       - name: Test
 | |
|         run: |
 | |
|           httpie.http --version
 | |
|           httpie.https --version
 | |
|           httpie --version
 | |
|           # Auto-aliases cannot be tested when installing a snap outside the store.
 | |
|           # http --version
 | |
|           # https --version
 |