Skip to content

Commit

Permalink
Create default GitHub Action main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hansbonini authored Jul 4, 2024
1 parent 27e0af8 commit 8538b3c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build-sega-genesis-asm-action
run-name: ${{ github.actor }} is building Sega Genesis assembler code
on:
push:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Go environment
uses: actions/[email protected]
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges. Be sure to enclose this option in single quotation marks.
go-version: 1.22.4
# Target architecture for Go to use. Examples: x86, x64. Will use system architecture by default.
architecture: windows/amd64
- name: Execute asm68k
run: make build

0 comments on commit 8538b3c

Please sign in to comment.