mirror of https://git.suyu.dev/suyu/suyu
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
# SPDX-FileCopyrightText: 2021 yuzu Emulator Project
 | 
						|
# SPDX-FileCopyrightText: 2024 suyu Emulator Project
 | 
						|
# SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
 | 
						|
# Actions Documentation: https://forgejo.org/docs/next/user/actions/#list-of-tasks-in-a-repository
 | 
						|
 | 
						|
name: suyu-ci
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ "dev" ]
 | 
						|
    tags: [ "*" ]
 | 
						|
  pull_request:
 | 
						|
    branches: [ "dev" ]
 | 
						|
 | 
						|
jobs:
 | 
						|
#   transifex:
 | 
						|
#     runs-on: ubuntu-latest
 | 
						|
#     container: fijxu/build-environments:linux-transifex
 | 
						|
#     if: ${{ GITHUB_REPOSITORY == 'suyu/suyu' && !GITHUB_HEAD_REF }}
 | 
						|
#     steps:
 | 
						|
#       - uses: https://code.forgejo.org/actions/checkout@v3
 | 
						|
#         with:
 | 
						|
#           submodules: recursive
 | 
						|
#           fetch-depth: 0
 | 
						|
#       - name: Update Translation
 | 
						|
#         run: ./.ci/scripts/transifex/docker.sh
 | 
						|
#         env:
 | 
						|
#           TX_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
 | 
						|
 | 
						|
  reuse:
 | 
						|
    name: Check REUSE Specification
 | 
						|
    runs-on: docker
 | 
						|
    if: ${{ github.repository == 'suyu/suyu' }}
 | 
						|
    steps:
 | 
						|
    - uses: https://code.forgejo.org/actions/checkout@v3
 | 
						|
    - uses: https://github.com/fsfe/reuse-action@v1
 | 
						|
 |