Skip to content

Commit

Permalink
update go version 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
ichirin2501 committed Jan 8, 2024
1 parent 26ffaa8 commit 7389336
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/scheduled-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ jobs:
scheduled-test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '${{ matrix.go-version }}'
go-version-file: go.mod
- name: Checkout code
uses: actions/checkout@v4
- name: Test
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '${{ matrix.go-version }}'
go-version-file: go.mod
- name: Checkout code
uses: actions/checkout@v4
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-buster
FROM golang:1.20-buster

RUN apt-get update && \
apt-get install -y --no-install-recommends --no-install-suggests \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rgnes

[![Build Status](https://github.com/ichirin2501/rgnes/workflows/Test/badge.svg?branch=master)](https://github.com/ichirin2501/rgnes/actions)
[![Scheduled-test](https://github.com/ichirin2501/rgnes/actions/workflows/scheduled-test.yml/badge.svg)](https://github.com/ichirin2501/rgnes/actions/workflows/scheduled-test.yml)
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)

This NES emulator is implemented for my study
Expand All @@ -12,9 +12,9 @@ It's great because it's written so simple.

## TODOs

- refactoring
- apu emulation
- (I'm not interested in sound so I probably won't implement it...)
- Refactoring
- Many bug fixes
- Support for many mappers

.. and tons more

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ichirin2501/rgnes

go 1.18
go 1.20

require (
fyne.io/fyne/v2 v2.1.4
Expand Down

0 comments on commit 7389336

Please sign in to comment.