If you don't already have the AD group as a valid login to SQL
CREATE LOGIN [dom\grp] FROM WINDOWS
Create the user within the database tied to the login
CREATE USER grp for login [dom\grp]
Give select permission
GRANT SELECT ON tbl TO grp
If the database has PUBLIC role activated and defaults to GRANT SELECT to PUBLIC, then the AD group would be able to select from all tables anyway.