mirror of
				https://github.com/maxgoedjen/secretive.git
				synced 2025-10-31 15:30:57 +00:00 
			
		
		
		
	* Update macOS version in GitHub Actions workflow * Update macOS version in release workflow * Update macOS version for nightly workflow * Fix runner OS for Swift in CodeQL workflow
		
			
				
	
	
		
			20 lines
		
	
	
		
			623 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			623 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Test
 | |
| 
 | |
| on: [push, pull_request]
 | |
| jobs:
 | |
|   test:
 | |
|     permissions:
 | |
|         contents: read
 | |
|     runs-on: macos-26
 | |
|     timeout-minutes: 10
 | |
|     steps:
 | |
|     - uses: actions/checkout@v5
 | |
|     - name: Set Environment
 | |
|       run: sudo xcrun xcode-select -s /Applications/Xcode_26.0.app
 | |
|     - name: Test Main Packages
 | |
|       run: xcrun xcodebuild -project Sources/Secretive.xcodeproj -scheme PackageTests test
 | |
|       # SPM doesn't seem to pick up on the tests currently?
 | |
|       # run: swift test --build-system swiftbuild --package-path Sources/Packages
 | |
|     - name: Test SecretKit Packages
 | |
|       run: swift test --build-system swiftbuild
 |